Ralf W. Grosse-Kunstleve
2261e7eedc
new docstring_options to support customization of __doc__ attributes of Boost.Python functions
...
[SVN r32297]
2006-01-12 19:15:38 +00:00
Ralf W. Grosse-Kunstleve
19a196493f
Runtime detection of broken cxxabi::__cxa_demangle versions; based on code contributed by Ult Mundane
...
[SVN r32296]
2006-01-12 19:12:27 +00:00
Ralf W. Grosse-Kunstleve
1cacefc226
automatic addition of C++ signatures to doc strings
...
[SVN r32290]
2006-01-12 00:32:29 +00:00
Ralf W. Grosse-Kunstleve
efcd2833f1
Visual C++ 6 compatibility
...
[SVN r32288]
2006-01-11 19:58:55 +00:00
Ralf W. Grosse-Kunstleve
2f9323d9e9
resolve gcc warnings (based on patches by Scott Howlett)
...
[SVN r32284]
2006-01-11 03:31:48 +00:00
Dave Abrahams
ef3f9b15f0
vc-8 workaround
...
[SVN r31943]
2005-12-07 05:00:02 +00:00
Dave Abrahams
a23030b83e
use symbol visibility for GCC 4.x
...
[SVN r31828]
2005-11-29 22:26:48 +00:00
Dave Abrahams
321cf2502a
use symbol visibility for GCC 4.x
...
[SVN r31827]
2005-11-29 22:26:05 +00:00
Joel de Guzman
09e24cb17d
map bug fix when data type is a shared_ptr and NoProxy is true
...
[SVN r31787]
2005-11-26 16:23:21 +00:00
Joel de Guzman
a076239fc8
std::string and std::complex as no-proxy types.
...
[SVN r31717]
2005-11-21 04:54:23 +00:00
Dave Abrahams
479f068673
Attempt Bronek's change to suppress VC++8.0 complaints about redefined
...
_DEBUG.
[SVN r31557]
2005-11-04 21:38:29 +00:00
Eric Niebler
9b326f15fa
qualify friend declaration to make EDG happy
...
[SVN r31538]
2005-11-02 22:43:05 +00:00
Dave Abrahams
988bf849a1
Account for Intel 9.0 picking up vc7.1 bug compatibility.
...
[SVN r31515]
2005-10-31 19:24:48 +00:00
Eric Niebler
6ec4387ea1
add stl_input_iterator for wrapping a Python iterator in a STL input iterator
...
[SVN r31513]
2005-10-31 18:49:54 +00:00
Dave Abrahams
3864838da2
Fixed for vc6
...
[SVN r31398]
2005-10-19 22:02:51 +00:00
Dave Abrahams
12770b03e8
Add the ability to easily use new-style polymorphism wrappers with
...
smart pointer held_type.
[SVN r31392]
2005-10-19 18:17:13 +00:00
Dave Abrahams
3d8f4c90ba
Make it work when Python is compiled with Unicode disabled.
...
[SVN r31321]
2005-10-14 15:35:06 +00:00
Dave Abrahams
5597dcb321
Disable ADL from addressof uses :(
...
[SVN r31319]
2005-10-14 15:05:17 +00:00
Dave Abrahams
1cec514b39
Martin Wille pointed out some missing header dependencies; fixed.
...
Also moved boost/python/detail/is_xxx.hpp functionality into
boost/detail/is_xxx.hpp to decouple library dependencies between
python and parameter.
[SVN r31290]
2005-10-11 21:20:06 +00:00
Dave Abrahams
8ecd49cbf0
Use "addressof(x)" instead of "&x" to deal with classes that have a
...
private operator& !!
[SVN r31279]
2005-10-11 13:19:05 +00:00
John Maddock
aa20ce7d2c
Large patch from Ulrich Eckhardt to fix support for EVC++ 4.
...
[SVN r30670]
2005-08-25 16:27:28 +00:00
Stefan Seefeld
126a3efb92
Add basic embedding support.
...
[SVN r30601]
2005-08-17 13:04:42 +00:00
Victor A. Wagner Jr.
9205f507b0
Added - #define _CRT_NOFORCE_MANIFEST if we also have to #undef _DEBUG
...
this isn't really an elegant solution, perhaps people trying to
debug python (BOOST_DEBUG_PYTHON defined) will really have to
use the debug version of the CRT with the latest .NET
There is also a collision if the user happens to have
#define _CRT_FORCE_MANIFEST which I didn't address
[SVN r30570]
2005-08-13 16:19:19 +00:00
Ralf W. Grosse-Kunstleve
bff975f08c
bug fix: friend class def_visitor_access; -> friend class python::def_visitor_access; This fix enables us to remove an EDG specific workaround.
...
[SVN r30471]
2005-08-04 20:15:35 +00:00
Dave Abrahams
332a45f333
untabify
...
[SVN r30239]
2005-07-25 20:57:30 +00:00
Joel de Guzman
980733a96d
fixed bug where a vector<T*> is being wrapped by the indexing suite.
...
[SVN r29930]
2005-07-07 14:00:31 +00:00
Ralf W. Grosse-Kunstleve
1fca114f6a
work around RedHat 7.3 gcc 2.96 code generation errors: use previously checked in VC6, VC7.0 workaround only for exactly these compilers
...
[SVN r29267]
2005-05-29 17:05:25 +00:00
Dave Abrahams
432d4782a5
Take typeid(T&) rather than typeid(T). For some some compilers won't
...
let you get away with typeid(T) when T is an incomplete class
type (that's conforming behavior), but GCC at least will allow
typeid(T&) -- also disallowed by the standard when T is incomplete.
If it turns out that EDGs also barf on typeid(T&), we may have more
work to do.
Some warning suppression for MSVC.
[SVN r29020]
2005-05-18 01:34:35 +00:00
Dave Abrahams
424f5bdf31
Workarounds for vc6 and 7.
...
[SVN r28973]
2005-05-16 17:34:46 +00:00
Dave Abrahams
13b16f9729
Workarounds for vc6 and 7.
...
[SVN r28958]
2005-05-16 14:54:12 +00:00
Dave Abrahams
82563df3bf
Better support for rvalue from-python conversions of shared_ptr:
...
always return a pointer that holds the owning python object *unless*
the python object contains a NULL shared_ptr holder of the right type.
[SVN r28947]
2005-05-16 03:31:13 +00:00
Dave Abrahams
02c0b2b486
Improve MPL idiomatic usage
...
[SVN r28945]
2005-05-16 02:01:35 +00:00
Dave Abrahams
c876db8cae
VC8 beta workaround
...
[SVN r28944]
2005-05-16 01:57:30 +00:00
Dave Abrahams
fe3906a7cb
Fix broken vc6 compatibility
...
[SVN r28515]
2005-04-28 14:15:19 +00:00
Dave Abrahams
e4eee902d4
Add missing #include
...
[SVN r27598]
2005-03-10 14:40:12 +00:00
Rene Rivera
c25967a094
Apply typo fixes from Julio M. Merino Vidal
...
[SVN r27513]
2005-02-27 17:28:24 +00:00
Jonathan Brandmeyer
17faf4504c
Export the client-provided docstrings for init<optional<> > and
...
_FUNCTION_OVERLOADS() for only the last overload.
[SVN r27415]
2005-02-18 02:42:42 +00:00
Ralf W. Grosse-Kunstleve
1cfa79554d
work around gcc problems (gcc 3.2.2 and higher); thanks to John Maddock for the patch!
...
[SVN r27142]
2005-02-05 07:36:14 +00:00
Jonathan Brandmeyer
567e620565
Match signatures with their mpl::true variants
...
[SVN r26829]
2005-01-24 02:37:37 +00:00
Jonathan Brandmeyer
5933fdbf39
Add docstring support for non-static properties.
...
[SVN r26814]
2005-01-22 21:41:37 +00:00
Ralf W. Grosse-Kunstleve
8dbd926d9e
__DECCXX_VER test: use BOOST_WORKAROUND, BOOST_TESTED_AT instead of raw '#if defined'
...
[SVN r26363]
2004-11-29 21:32:14 +00:00
Joel de Guzman
1e3cfbca03
fixes for the warnings.
...
[SVN r26290]
2004-11-25 09:17:04 +00:00
Ralf W. Grosse-Kunstleve
acd8ec2c31
adjustment for latest Tru64/cxx release (V6.5-042)
...
[SVN r26222]
2004-11-15 23:50:57 +00:00
Dave Abrahams
655868d803
Eliminate return from void function.
...
[SVN r25742]
2004-10-15 16:53:40 +00:00
Dave Abrahams
bd74676685
Work around the stupid VC++/Intel bug that retains argument constness in function signatures.
...
[SVN r25437]
2004-09-27 14:49:27 +00:00
Aleksey Gurtovoy
3bb3434a8d
fix MSVC 6.x ICE in 'vector_indexing_suite.cpp'
...
[SVN r25343]
2004-09-22 16:54:04 +00:00
Dave Abrahams
2121039a2b
Use proper configuration macros.
...
[SVN r25312]
2004-09-21 14:39:50 +00:00
Dave Abrahams
5bab5a2398
Fix GCC export limiting patch from Niall Douglas s_sourceforge-at-nedprod.com
...
[SVN r25279]
2004-09-20 13:59:59 +00:00
Dave Abrahams
2ca8be0bb2
vc6 workaround
...
[SVN r25278]
2004-09-20 13:45:52 +00:00
Dave Abrahams
227448f061
Fix #include
...
[SVN r25274]
2004-09-20 13:39:37 +00:00
Dave Abrahams
0b026dc5a2
Apply GCC export limiting patch from Niall Douglas s_sourceforge-at-nedprod.com
...
[SVN r25271]
2004-09-20 12:47:31 +00:00
Dave Abrahams
fd75e791a7
moved indirect_traits to boost/detail
...
[SVN r25128]
2004-09-16 01:00:30 +00:00
Dave Abrahams
7eb9f910ba
moved indirect_traits to boost/detail
...
[SVN r25127]
2004-09-16 00:47:59 +00:00
Dave Abrahams
78cd3298aa
Move indirect_traits to boost/detail
...
[SVN r25124]
2004-09-15 19:35:10 +00:00
Dave Abrahams
2f5dfbb728
Move indirect_traits to boost/detail
...
[SVN r25117]
2004-09-15 15:00:12 +00:00
Douglas Gregor
f7db275bc4
License update
...
[SVN r24990]
2004-09-09 13:59:01 +00:00
Dave Abrahams
7171a34364
Daniel Holth's PyBool mods (dholth-at-fastmail.fm)
...
[SVN r24980]
2004-09-08 19:18:57 +00:00
Dave Abrahams
f1260e6869
cw ICE workaround
...
[SVN r24979]
2004-09-08 18:57:14 +00:00
Ralf W. Grosse-Kunstleve
c5cf576deb
_DEBUG/BOOST_DEBUG_PYTHON/DEBUG_UNDEFINED_FROM_WRAP_PYTHON_H must appear before #include <pyconfig.h>
...
[SVN r24942]
2004-09-06 18:42:41 +00:00
Aleksey Gurtovoy
bfd7f71601
merge new MPL version from 'mplbook' branch
...
[SVN r24874]
2004-09-02 15:41:37 +00:00
Ralf W. Grosse-Kunstleve
3918395715
always include <pyconfig.h> first
...
[SVN r24852]
2004-09-01 15:43:52 +00:00
Dave Abrahams
dec9c6d96e
removed as defunct
...
[SVN r24841]
2004-08-31 22:11:37 +00:00
Dave Abrahams
e00462992c
Added default args
...
[SVN r24757]
2004-08-26 14:07:17 +00:00
Ralf W. Grosse-Kunstleve
951c65e5a1
Compaq C++ V6.5-041 still needs the offsetof workaround
...
[SVN r24732]
2004-08-25 21:50:52 +00:00
John Maddock
0f19b148f6
Converted files to the BSL.
...
[SVN r24614]
2004-08-20 11:10:24 +00:00
Ralf W. Grosse-Kunstleve
500b8e190d
support gcc 2.96 workaround (typedef arg arg_;)
...
[SVN r24388]
2004-08-10 17:04:14 +00:00
Ralf W. Grosse-Kunstleve
9102c12c6d
bug fix: make use of kw in make_constructor_aux
...
[SVN r24387]
2004-08-10 17:03:23 +00:00
Dave Abrahams
2c383e7216
Workaround bogus GCC warning.
...
[SVN r24306]
2004-08-05 16:57:10 +00:00
Ralf W. Grosse-Kunstleve
cbe6de2a2d
fixes to avoid EDG 245 warnings (by Jonathan Brandmeyer)
...
[SVN r24130]
2004-07-28 01:45:50 +00:00
Ralf W. Grosse-Kunstleve
fbe3a563c3
avoid "incomplete type" error (EDG 245 diagnostic)
...
[SVN r24104]
2004-07-27 07:08:53 +00:00
Ralf W. Grosse-Kunstleve
0c453fda0b
MIPSpro 7.3.1.x workaround
...
[SVN r24103]
2004-07-27 07:08:08 +00:00
Dave Abrahams
c8e8ccfa22
New-style polymorphism
...
[SVN r24083]
2004-07-26 15:34:36 +00:00
Douglas Gregor
fed0b09c4e
Converted to Boost Software License, Version 1.0
...
[SVN r24055]
2004-07-26 00:32:12 +00:00
Rene Rivera
3e76482713
Remove tabs in file.
...
[SVN r24043]
2004-07-25 17:12:17 +00:00
Ralf W. Grosse-Kunstleve
d6325d902e
workaround for MIPSpro 7.3.1.3 name lookup problem
...
[SVN r23825]
2004-07-20 05:12:33 +00:00
Dave Abrahams
615adc5fe6
Make slice work on vc6
...
Revamp/simplify class registration
[SVN r23823]
2004-07-20 03:16:49 +00:00
Rene Rivera
af1530953e
Move dllexport declaration from methods to slice class as mingw can't handle it. Resolves bug #952335 .
...
[SVN r23464]
2004-07-12 13:07:17 +00:00
Ralf W. Grosse-Kunstleve
87290af774
workaround for broken gcc that ships with SuSE 9.0 and SuSE 9.1
...
[SVN r23411]
2004-07-09 04:53:39 +00:00
Jonathan Brandmeyer
8469d7727d
Add a small set of test cases for slice::get_indicies().
...
Promote slice::start(), slice::stop(), slice::step, and
slice::get_indicies() to const.
Fix typos in the documentation.
[SVN r23408]
2004-07-08 17:29:51 +00:00
Ralf W. Grosse-Kunstleve
112c999818
obtain correct class name via cl.attr("__name__")
...
[SVN r23359]
2004-07-06 04:36:50 +00:00
Ralf W. Grosse-Kunstleve
858e5e9720
boost/python/detail/prefix.hpp must be included first to satisfy Python requirements; this fixes compilation errors under Tru64 Unix and IRIX using Python 2.3.4
...
[SVN r23334]
2004-07-04 07:08:54 +00:00
Eric Niebler
b76f185cb6
move BOOST_USING_STD_MIN and _MAX and BOOST_PREVENT_MACRO_SUBSTITUTION to the config headers, remove boost/minmax.hpp, update coding guidelines
...
[SVN r23313]
2004-07-02 01:21:32 +00:00
Eric Niebler
9d7097177d
remove std_min and std_max, update minmax coding guidelines
...
[SVN r23162]
2004-06-23 04:49:48 +00:00
Ralf W. Grosse-Kunstleve
c6587596b1
unused variable names removed to avoid warning messages (Giulio Eulisse)
...
[SVN r23080]
2004-06-11 00:11:11 +00:00
Ralf W. Grosse-Kunstleve
b661aad9ac
work around MIPSpro 7.41 problems
...
[SVN r23079]
2004-06-11 00:07:55 +00:00
Joel de Guzman
8ae8430e7c
ADL bug-fix
...
[SVN r22729]
2004-05-04 09:41:01 +00:00
Dave Abrahams
2ee25fda61
Added missing const to prevent spurious static asserts
...
[SVN r22719]
2004-05-01 17:37:15 +00:00
Ralf W. Grosse-Kunstleve
e766286d92
use BOOST_WORKAROUND
...
[SVN r22640]
2004-04-15 16:24:03 +00:00
Ralf W. Grosse-Kunstleve
e0bf57ae36
workaround for MIPSpro
...
[SVN r22638]
2004-04-15 15:16:15 +00:00
Ralf W. Grosse-Kunstleve
5df66bb179
adjusted #ifdef's for Compaq C++ V6.5-040 for Compaq Tru64 UNIX
...
[SVN r22637]
2004-04-15 14:59:31 +00:00
Ralf W. Grosse-Kunstleve
b5256ef70b
adjusted #ifdef's for Compaq C++ V6.5-040 for Compaq Tru64 UNIX
...
[SVN r22636]
2004-04-15 14:17:09 +00:00
Dave Abrahams
957ad2b4b1
Adjust to make the tutorial work
...
[SVN r22568]
2004-03-30 23:14:47 +00:00
Jonathan Brandmeyer
7187c6132a
Throw an IndexError when given an extended slice;
...
Clip bounds of slices in a mannar consistant with builtin containers;
Prevent undefined behavior within the STL when given certain kinds of
empty slices.
[SVN r22507]
2004-03-17 03:15:35 +00:00
Dave Abrahams
b3f0d7c756
Fix bad "fix".
...
[SVN r22495]
2004-03-13 01:47:35 +00:00
Dave Abrahams
0cdfdee18f
*** empty log message ***
...
[SVN r22492]
2004-03-12 22:34:43 +00:00
Ralf W. Grosse-Kunstleve
a283f56d05
define BOOST_PYTHON_TYPE_ID_NAME for Linux Intel C++
...
[SVN r22491]
2004-03-12 18:43:08 +00:00
Dave Abrahams
e6fd78ce93
Fixes for auto_ptr handling
...
[SVN r22490]
2004-03-12 15:22:16 +00:00
Dave Abrahams
aeed5f029e
Use mpl::next to prepare for the next release of MPL
...
[SVN r22485]
2004-03-12 13:10:40 +00:00
Jonathan Brandmeyer
476cba228d
Changes to support MSVC 6.0.
...
[SVN r22430]
2004-03-04 16:42:56 +00:00
Eric Niebler
115f9f0644
remove minmax hack from win32.hpp and fix all places that could be affected by the minmax macros
...
[SVN r22394]
2004-02-26 18:27:02 +00:00
Ralf W. Grosse-Kunstleve
ae1584ff3c
class_::enable_pickling() in publicized interface; tested with everything incl. VC6 and 7.0
...
[SVN r22254]
2004-02-13 05:32:38 +00:00
Jonathan Brandmeyer
799eeb0cb8
Fix a build error on Tru64. Thanks to Ralf W. Grosse-Kunstleve for this
...
fix.
[SVN r22250]
2004-02-12 23:09:10 +00:00
Jonathan Brandmeyer
8452e275d0
New implementation, tests, and documentation for a PySliceObject
...
objectmanager.
[SVN r22192]
2004-02-07 21:38:24 +00:00
Dave Abrahams
8fcfed495a
Fixes for intel-linux
...
added <default> feature handling for specifying build defaults in requirement sets.
[SVN r22027]
2004-01-28 22:50:18 +00:00
Ralf W. Grosse-Kunstleve
b03c3a29e0
previous revision (1.10) of this file restored because http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13530 is fixed
...
[SVN r21633]
2004-01-12 18:02:28 +00:00
Ralf W. Grosse-Kunstleve
4a30841ad8
fix for Tru64 cxx problems incl. workaround for gcc 2.96 problems; patch by David Abrahams; thanks Dave!
...
[SVN r21558]
2004-01-09 07:25:17 +00:00
Dave Abrahams
234ebadb8d
pro9 workarounds; some ADL protection for is_xxx
...
[SVN r21529]
2004-01-07 14:07:21 +00:00
Dave Abrahams
440599545f
Workaround for gcc-3.4 quirks
...
[SVN r21493]
2004-01-05 11:46:30 +00:00
Dave Abrahams
44ba088cb4
Fix problem with [:] slices on python::objects
...
[SVN r21472]
2004-01-04 13:41:00 +00:00
Ralf W. Grosse-Kunstleve
56ff8e438e
fix use of incomplete type (Tru64 cxx diagnostic)
...
[SVN r21444]
2004-01-02 08:31:21 +00:00
Dave Abrahams
3590a3589d
Fix 2-phase lookup bug
...
[SVN r21442]
2004-01-01 12:46:04 +00:00
Dave Abrahams
7674c82e1f
Fix bug with (arg("x"), "y") construct.
...
[SVN r21437]
2003-12-31 19:20:31 +00:00
Ralf W. Grosse-Kunstleve
f53925848c
work around g++ (GCC) 3.4.0 20031230 (experimental) internal compiler error
...
[SVN r21432]
2003-12-31 09:37:31 +00:00
Dave Abrahams
eedc88b56a
Bug fixes in property handling
...
[SVN r21429]
2003-12-31 00:23:52 +00:00
Ralf W. Grosse-Kunstleve
589fefe4b9
tabs -> spaces
...
[SVN r21405]
2003-12-27 06:22:29 +00:00
Dave Abrahams
48321857e4
consistent use of get_pointer
...
[SVN r21326]
2003-12-18 19:23:38 +00:00
Beman Dawes
6795a280fd
tabs to spaces
...
[SVN r21080]
2003-12-02 13:32:47 +00:00
Dave Abrahams
a278da2eba
correct get_pointer usage
...
[SVN r21017]
2003-11-30 21:10:15 +00:00
Dave Abrahams
37b2bdba79
Workaround gcc-2.x ICE
...
[SVN r21016]
2003-11-30 21:08:19 +00:00
Dave Abrahams
e9519db974
Make Dereferenceable use get_pointer
...
Re-enable map_indexing_suite iteration for vc6.
[SVN r21008]
2003-11-29 22:12:18 +00:00
Ralf W. Grosse-Kunstleve
0d437c4102
MIPSpro 7.41 workaround
...
[SVN r20795]
2003-11-12 19:49:18 +00:00
Raoul Gough
feff7bccd3
Fix MSVC6 duplicate comdat (LNK1179) with multiple python::range instances
...
[SVN r20794]
2003-11-12 16:50:17 +00:00
Dave Abrahams
1e02065982
Fix Mike Rovner's warning suppression.
...
[SVN r20673]
2003-11-05 00:43:13 +00:00
Ralf W. Grosse-Kunstleve
cdee5997af
obsolete MIPSpro workaround removed
...
[SVN r20667]
2003-11-04 20:17:48 +00:00
Dave Abrahams
91b23c8367
Warning suppression thanks to Mike Rovner <mike-at-bindkey.com>
...
[SVN r20617]
2003-11-03 20:45:21 +00:00
Dave Abrahams
ef7d675d67
bug fix for a single use of arg with no comma operator
...
[SVN r20533]
2003-10-29 00:46:08 +00:00
Dave Abrahams
4f129d035b
Bug fix, thanks to Nicolas LELONG, nlelong-at-mgdesign.org for the report.
...
[SVN r20401]
2003-10-17 14:13:48 +00:00
Dave Abrahams
7a354c4ff4
Warning suppression for GCC.
...
[SVN r20396]
2003-10-15 23:19:48 +00:00
Dave Abrahams
364826b3b3
Include @group directives for Synopsis
...
[SVN r20364]
2003-10-13 21:04:11 +00:00
Raoul Gough
e9b308da46
Use msvc_typeid only if _MSV_VER is set, to avoid problems with Intel compiler on Linux
...
[SVN r20340]
2003-10-10 14:55:13 +00:00
Dave Abrahams
94cfa2602f
Fix typo
...
[SVN r20324]
2003-10-09 14:15:20 +00:00
Bruno da Silva de Oliveira
1a51a7df9e
- added missing <boost/python/return_arg.hpp>
...
[SVN r20257]
2003-10-04 21:44:24 +00:00
Dave Abrahams
615be89951
Support for logical negation operator via __nonzero__
...
[SVN r20256]
2003-10-04 15:40:09 +00:00
Dave Abrahams
96d66f4624
Correct integral constant overflow
...
[SVN r20136]
2003-09-21 18:49:04 +00:00
Dave Abrahams
c3bae63e41
Fix const-correctness problem
...
[SVN r20135]
2003-09-21 17:24:37 +00:00
Dave Abrahams
92a77dfe7f
Implemented injected constructors.
...
Eliminated _DEBUG redefinition warning for CWPro8.
[SVN r20126]
2003-09-21 01:35:19 +00:00
Dave Abrahams
bec2de08fe
Use make_function uniformly to build callable objects.
...
Fix wstring support so it doesn't break gcc2.95.x, which has no wstring.
Modify CallPolicies protocol so it can safely adjust the argument tuple.
[SVN r20090]
2003-09-17 21:36:53 +00:00
Dave Abrahams
f920dc87d0
Added std::wstring conversion support
...
Added std::out_of_range => Python IndexError exception conversion,
thanks to Raoul Gough
[SVN r20027]
2003-09-11 19:19:55 +00:00
Dave Abrahams
e78b4939b3
Added new str constructors which take a range of characters, allowing
...
strings containing nul ('\0') characters.
[SVN r20006]
2003-09-11 02:57:24 +00:00
Joel de Guzman
50db384be1
Used BOOST_WORKAROUND
...
[SVN r19980]
2003-09-09 13:13:44 +00:00
Joel de Guzman
034ca4d5eb
mscv workaround
...
[SVN r19962]
2003-09-08 12:56:33 +00:00
Dave Abrahams
0133bdfbe3
Removed unused ConverterGenerators arguments.
...
Updated arg_from_python<T> so that its operator() is nullary -- it
already gets everything it needs in its constructor.
[SVN r19948]
2003-09-07 19:44:44 +00:00
Dave Abrahams
b3910f4e4d
Support for wrapping function objects and classes which use virtual
...
inheritance. Completely killed off member_function_cast!
[SVN r19945]
2003-09-07 16:56:05 +00:00
Ralf W. Grosse-Kunstleve
cbacc98e3f
MIPSpro workaround
...
[SVN r19783]
2003-08-26 12:52:21 +00:00
Dave Abrahams
84daf14f1b
Added missing #includes
...
[SVN r19782]
2003-08-26 11:45:47 +00:00
Dave Abrahams
4af28b2a46
Added missing #includes
...
[SVN r19778]
2003-08-26 02:25:33 +00:00
Dave Abrahams
7ec78eecbd
Implemented pure_virtual(...)
...
[SVN r19774]
2003-08-25 18:44:26 +00:00
Dave Abrahams
87c5e37f5e
vc6 workaround for nested enums
...
[SVN r19773]
2003-08-25 18:41:26 +00:00
Dave Abrahams
d02959e3ed
Remove cwpro7 workarounds; simplified select_holder
...
[SVN r19772]
2003-08-25 18:41:02 +00:00
Dave Abrahams
b844d8b750
Refactoring and cleanups
...
[SVN r19770]
2003-08-25 18:38:39 +00:00
Dave Abrahams
165e294298
Fix #ifdef
...
[SVN r19745]
2003-08-23 11:41:00 +00:00
Ralf W. Grosse-Kunstleve
f7c9f45508
simple fix for MIPSpro after a long struggle; thanks to Stephen Adamczyk and John Spicer at EDG!
...
[SVN r19724]
2003-08-21 21:27:38 +00:00
Joel de Guzman
af2a924301
more workaround fixes for VC6 linker bug
...
[SVN r19714]
2003-08-20 13:15:41 +00:00
Joel de Guzman
3981e83de5
workaround MSVC linker bug
...
[SVN r19713]
2003-08-20 12:07:48 +00:00
Joel de Guzman
4946af1448
Map indexing fix for VC6.5
...
[SVN r19699]
2003-08-19 20:32:56 +00:00
Joel de Guzman
cfb13fad22
fix for wrapping vector<bool>
...
[SVN r19692]
2003-08-19 03:28:53 +00:00
Joel de Guzman
4e3f3a052d
chaned struct def_visitor; to class def_visitor;
...
[SVN r19691]
2003-08-19 02:23:16 +00:00
Dave Abrahams
7f3aceafd2
Fix public/private error.
...
[SVN r19636]
2003-08-16 13:56:52 +00:00
Dave Abrahams
da5979931c
class.hpp, object/select_holder.hpp, object/pointer_holder.hpp -
...
fix a problem which was causing value_holder<T> to be instantiated
on abstract classes. Now we compute the held_type at an outer
level thereby avoiding the inner instantiation.
object_core.hpp -
workarounds for GCC 2.x bugs
suite/indexing/detail/indexing_suite_detail.hpp -
workaround for a CWPro8 bug
[SVN r19635]
2003-08-16 13:48:34 +00:00
Dave Abrahams
d8c7e75095
Fix the fix... again!
...
[SVN r19617]
2003-08-15 03:45:34 +00:00
Joel de Guzman
187506c97f
added map value type (std::pair) wrapper to map_indexing_suite.hpp
...
[SVN r19616]
2003-08-15 03:03:27 +00:00
Dave Abrahams
e2973f27f9
Fix the fix ;-)
...
[SVN r19613]
2003-08-14 22:53:30 +00:00
Dave Abrahams
976b8180ae
Workaround a VC7 bug with nested enums
...
[SVN r19611]
2003-08-14 22:48:01 +00:00
Joel de Guzman
834d815c87
mapping suite update
...
[SVN r19598]
2003-08-14 15:03:14 +00:00
Joel de Guzman
57e58c445b
Tweaks to accomodate map_indexing_suite
...
[SVN r19588]
2003-08-14 12:14:25 +00:00
Joel de Guzman
8a1a8342d6
Initial commit map_indexing_suite
...
[SVN r19587]
2003-08-14 12:13:15 +00:00
Joel de Guzman
fa70ddc2c5
Preparing for std::map suite
...
[SVN r19566]
2003-08-12 21:21:47 +00:00
Joel de Guzman
8ca32bb494
Minor tweak in preparation for map_indexing_suite.hpp
...
[SVN r19565]
2003-08-12 18:36:55 +00:00
Joel de Guzman
f6c82eba0c
changed def_arg to def_visitor
...
[SVN r19564]
2003-08-12 18:35:00 +00:00
Joel de Guzman
b10805dc4c
moved to new "suite" directory
...
[SVN r19562]
2003-08-12 18:09:21 +00:00
Joel de Guzman
07f397e2ed
Moved to new "suite" directory
...
[SVN r19561]
2003-08-12 18:07:11 +00:00
Dave Abrahams
054dc439d2
Workaround msvc bug
...
[SVN r19553]
2003-08-12 14:17:52 +00:00
Dave Abrahams
5008dcbdd4
Make sure the class object and cast relationships are registered for
...
virtual function dispatch classes.
[SVN r19543]
2003-08-12 04:36:42 +00:00
Dave Abrahams
9c6650963f
Use def_visitor to simplify class def(...) handling.
...
Workarounds for intel6 and vc6.
[SVN r19533]
2003-08-11 14:56:30 +00:00
Dave Abrahams
957ac66e14
Added missing #include
...
Use BOOST_EXPLICIT_TEMPLATE_TYPE
[SVN r19529]
2003-08-11 02:21:34 +00:00
Dave Abrahams
07ce84c4e7
Repair bugs introduced during previous workaround
...
[SVN r19526]
2003-08-11 02:01:15 +00:00
Dave Abrahams
c3b4b58075
Extended CWPro8 overload ambiguity workaround to cover make_setter as
...
well as make_getter.
[SVN r19519]
2003-08-10 22:50:38 +00:00
Joel de Guzman
a0c31b47e5
refactored code + cleanup
...
[SVN r19508]
2003-08-10 15:20:10 +00:00
Joel de Guzman
5fb677c0c5
initial commit of container utils
...
[SVN r19507]
2003-08-10 15:19:23 +00:00
Joel de Guzman
53726746b8
Clean-up, refactored and added NoSlice option.
...
[SVN r19488]
2003-08-07 17:16:07 +00:00
Joel de Guzman
fe0b59f559
some trivial fixes.
...
[SVN r19485]
2003-08-07 12:29:54 +00:00
Joel de Guzman
c014dee6dc
Fixed no proxy handling for containers of primitive types.
...
[SVN r19484]
2003-08-07 08:45:57 +00:00
Joel de Guzman
90c69d961e
Added named visitor .def facility.
...
[SVN r19483]
2003-08-07 03:07:20 +00:00
Dave Abrahams
342f7db678
Workaround vc7.1 typeid problem with cv-qualified arrays.
...
[SVN r19474]
2003-08-06 13:51:03 +00:00
Joel de Guzman
9eb704f85a
fixed iteration scheme and added append and extend methods
...
[SVN r19469]
2003-08-06 08:06:09 +00:00
Dave Abrahams
e4dc639e54
Allow mutating operations on self for all operators
...
[SVN r19454]
2003-08-05 03:15:37 +00:00
Ralf W. Grosse-Kunstleve
5d90101671
workaround for MIPSpro, thanks to John Spicer
...
[SVN r19453]
2003-08-05 03:03:49 +00:00
Joel de Guzman
32c7088600
added missing typename and include file
...
[SVN r19448]
2003-08-04 23:34:52 +00:00
Dave Abrahams
07c1319b99
Added the new arg class from
...
"nickm-at-sitius.com" (Nikolay Mladenov) which supplies the
ability to wrap functions that can be called with ommitted
arguments in the middle.
[SVN r19441]
2003-08-04 17:46:48 +00:00
Joel de Guzman
1f715958f9
Fixed get_slice
...
[SVN r19421]
2003-08-04 05:09:23 +00:00
Joel de Guzman
0922aca873
Better usage of handle<>.
...
[SVN r19420]
2003-08-04 03:24:41 +00:00
Joel de Guzman
30ec6181b5
Fixed negative ref count bug
...
[SVN r19419]
2003-08-04 02:36:47 +00:00
Dave Abrahams
b28d586612
Move assignment operator inline as a workaround for a vc7 bug.
...
[SVN r19416]
2003-08-03 14:19:09 +00:00
Dave Abrahams
bfa868a440
Workarounds for VC6 bugs
...
[SVN r19389]
2003-07-31 15:56:10 +00:00
Dave Abrahams
f01ff3a277
Prune #includes
...
[SVN r19382]
2003-07-31 01:04:51 +00:00
Dave Abrahams
d88e6bf688
object_core.hpp - use detail/is_xxx to generate template identifiers
...
object_operators.hpp - use SFINAE to prevent ADL from finding
generalized operators inappropriately
[SVN r19377]
2003-07-30 23:48:06 +00:00
Dave Abrahams
a3cdacd088
Bug fix -- we weren't handling NULL keywords dictionaries in raw_function
...
[SVN r19359]
2003-07-30 11:34:50 +00:00
Joel de Guzman
a6440a3fa6
Minor tweaks
...
[SVN r19313]
2003-07-26 05:47:11 +00:00
Joel de Guzman
2dece7ecaf
added __iter__ and __contains__
...
[SVN r19311]
2003-07-26 01:50:35 +00:00
Ralf W. Grosse-Kunstleve
ac5314093b
fixing some trivial bugs (missing or misplaced typename); work around gcc 3.2 bug
...
[SVN r19299]
2003-07-24 15:07:05 +00:00
Ralf W. Grosse-Kunstleve
1524fb9fa9
flotsam removed
...
[SVN r19297]
2003-07-24 13:51:06 +00:00
Joel de Guzman
957549460b
Initial Commit of Indexing Suite
...
[SVN r19296]
2003-07-24 12:02:57 +00:00
Joel de Guzman
3b33f54fb8
Added generic visitation mechanism.
...
[SVN r19288]
2003-07-24 01:44:18 +00:00
Dave Abrahams
96a7bce78e
Give feedback about the name and namespace of functions in error messages.
...
[SVN r19280]
2003-07-23 13:08:59 +00:00
Dave Abrahams
77f5eb703c
Attempt to work around a GCC EH problem by sticking a virtual function
...
in error_already_set and defining it in the library.
Removed some flotsam
[SVN r19274]
2003-07-23 03:00:48 +00:00
Dave Abrahams
af53ae8329
Implemented better error reporting for argument match errors.
...
[SVN r19271]
2003-07-23 01:31:34 +00:00
Dave Abrahams
8f76b8880e
Remove bad #includes
...
[SVN r19269]
2003-07-22 23:55:09 +00:00
Dave Abrahams
fa398734be
initial commit
...
[SVN r19267]
2003-07-22 23:53:06 +00:00
Dave Abrahams
d4e06ac436
Preparation for delivering nicely-formatted error messages in
...
Boost.Python. The major change is that, instead of being
boost::function2<PyObject*,PyObject*,PyObject*>, py_function is now a
runtime-polymorphic wrapper for compile-time polymorphic
behavior (just like function) of our own which carries more
information/behaviors. In particular, you can retrieve an array of
c-strings describing the types in the function signature.
Additionally, the minimum and maximum arity are stored in the
py_function object instead of in the 'function' object which wraps it.
* data_members.hpp -
Adjustments for the new py_function. Workarounds for CodeWarrior
Pro 8.3 bugs in function template argument deduction with
pointers-to-members.
* has_back_reference.hpp, test/back_reference.cpp,
test/select_holder.cpp -
Updated to follow the metafunction protocol
* init.hpp, detail/defaults_gen.hpp -
Make Keywords a more-specific type in function signatures to
prevent string literals that show up as char[N] from binding to
the wrong argument (at least Intel 7.1 for Windows does this).
* make_function.hpp -
Adjustments for the new py_function. Arities are now computed
by caller<>.
* opaque_pointer_converter.hpp, type_id.hpp -
Use BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS facilities;
generate specializations that all compilers can handle.
* raw_function.hpp -
Adjustments for the new py_function.
* caller.hpp -
Added arity and signature type name reporting.
* detail/config.hpp
Enable __declspec(dllexport) for Cygwin, thereby fixing the
recent horrible Cygwin linking problems.
* detail/msvc_typeinfo.hpp -
Always pass boost::type<T>* explicitly, thereby working around
incompatible notions of how to specialize function templates with
default arguments on various compilers.
* object/function.hpp
, object/function_handle.hpp
, object/function_object.hpp
, object/function_object.cpp
Adjustments for the new py_function. Arities are carried by
py_function.
* object/iterator.hpp, object/iterator.cpp
Adjustments for the new py_function; we have to compute a
signature of types to construct it with.
* object/py_function.hpp
Removed dependency on boost::function; see the comment at the
top of this entry for more details.
* object/select_holder.hpp
Clean up to more closely follow MPL idioms.
* test/Jamfile -
Adjust the embedding test for the new Cygwin use of declspec.
Update bases and pointee tests with missing properties.
* test/input_iterator.cpp -
Updates for the new iterator adaptors.
* test/opaque.py -
Add Python encoding comment to suppress PendinDeprecationWarning
with recent Python builds.
* test/str.cpp
Pass a Python long instead of a float to string.expandtabs,
suppressing a PendinDeprecationWarning with recent Python builds.
* libs/utility/counting_iterator_example.cpp
Borland workaround
* libs/utility/indirect_iterator_example.cpp
const-correctness fix.
*
[SVN r19247]
2003-07-22 00:06:41 +00:00
Dave Abrahams
817dcd37e0
Get Cygwin linking again
...
User-readable type name printing for GCC
[SVN r19236]
2003-07-21 02:14:58 +00:00
Dave Abrahams
25bfd3c50f
Suppress a GCC 2.x ICE
...
[SVN r19235]
2003-07-21 02:12:04 +00:00
Dave Abrahams
b13c902fb0
* added return_arg policy from Nikolay Mladenov
...
* removed duplication from reference.html
* improved automatic redirection messages
[SVN r19226]
2003-07-19 23:49:06 +00:00
Bruno da Silva de Oliveira
162727590c
- moved register_ptr_to_python up one level.
...
[SVN r19123]
2003-07-15 01:05:07 +00:00
Bruno da Silva de Oliveira
68f54d364b
- register_ptr_to_python addition
...
[SVN r18880]
2003-06-27 18:34:25 +00:00
Ralf W. Grosse-Kunstleve
54db04521a
MIPSpro workaround
...
[SVN r18744]
2003-06-09 13:10:34 +00:00
Ralf W. Grosse-Kunstleve
4477fe4dd6
Python 2.3 Tru64 cxx compatibility & a little cleanup
...
[SVN r18652]
2003-06-03 02:58:43 +00:00
Ralf W. Grosse-Kunstleve
ec750a44c9
missing include added (to avoid gcc 3.2 and tru64_cxx errors)
...
[SVN r18646]
2003-06-02 13:17:11 +00:00
Dave Abrahams
638b3d4ee1
added a small comment
...
[SVN r18636]
2003-06-01 14:48:53 +00:00
Dave Abrahams
f1a06b14de
Handle null shared_ptrs
...
[SVN r18627]
2003-05-31 16:40:42 +00:00
Dave Abrahams
286f3dc093
Added #include <boost/python/detail/prefix.hpp> to ensure that all public Boost.Python headers begin by #including Python.h before as many system headers as possible.
...
[SVN r18626]
2003-05-31 14:53:02 +00:00
Dave Abrahams
0db07ec25e
Added missing #include thanks to Ben Hutchings <ben.hutchings-at-businesswebsoftware.com>
...
[SVN r18623]
2003-05-31 13:43:29 +00:00
Ralf W. Grosse-Kunstleve
ee4b06bb50
static keyword removed (Aye, Aye Sir David Abrahams!)
...
[SVN r18570]
2003-05-27 21:07:40 +00:00
Ralf W. Grosse-Kunstleve
5911691c0d
workaround for silly MIPSpro compiler
...
[SVN r18550]
2003-05-26 19:46:05 +00:00
Ralf W. Grosse-Kunstleve
e369bddc84
avoid use of sizeof to enable compilation with buggy gcc 3.3; change as per David Abrahams' instructions
...
[SVN r18549]
2003-05-26 19:06:00 +00:00
Dave Abrahams
9675e4233b
Fix a bug in dangling reference/pointer detection. Thanks to Daniel
...
Paull <dlp-at-fractaltechnologies.com> for reporting it.
[SVN r18498]
2003-05-22 15:13:22 +00:00
Dave Abrahams
ff0980914b
reinstate workarounds for vc7
...
[SVN r18490]
2003-05-22 01:34:04 +00:00
Dave Abrahams
43e5ccd0a7
object_core.hpp - allow wrapping of objects which take object managers in their constructors.
...
forward.hpp
pointer_holder.hpp
value_holder.hpp
test/long.[py/cpp]
pointee.hpp, - begin making borland work.
cv_category.hpp,
referent_storage.hpp
instance.hpp
self.hpp - removed flotsam
signature.hpp - use vector instead of list
destroy.hpp - removed needless complication
make_keyword_range_fn.hpp - support for simpler init using vectors
class_converters.hpp - workaround for pro7
inheritance.hpp - simplified; took out pro7 workarounds; factored out
inheritance_query.hpp to reduce recompilation
dependencies
make_ptr_instance.hpp - add missing typename
registry.cpp - add a little invariant checking for metrowerks
class.cpp - stopped relying on class_id typedef
test/data_members.cpp - added a few more tests to make sure things compile at least.
test/destroy_test.cpp - removed cheating has_trivial_destructor tests
test/enum.cpp - added some pro7 workarounds
test/virtual_functions.[py/cpp] - added _some_ tests for callbacks which return by reference.
[SVN r18489]
2003-05-21 22:17:23 +00:00
Dave Abrahams
66d6272942
Use mpl::vector and simplify constructor generation so we don't have
...
to constantly reverse lists.
[SVN r18487]
2003-05-21 21:53:30 +00:00
Dave Abrahams
2f1b828967
Getter setter bugfixes for attribute access
...
[SVN r18486]
2003-05-21 21:52:26 +00:00
Dave Abrahams
622636dcf1
Killed unneeded #include
...
[SVN r18485]
2003-05-21 21:51:03 +00:00
Dave Abrahams
0c22c276bf
Workaround CW bug
...
[SVN r18472]
2003-05-20 19:01:44 +00:00
Dave Abrahams
c3f5679188
Bug fix
...
[SVN r18372]
2003-05-08 20:18:14 +00:00
Ralf W. Grosse-Kunstleve
022a5a16f5
Python 2.3b1 compatibility: LONG_LONG -> PY_LONG_LONG
...
[SVN r18337]
2003-05-01 05:19:47 +00:00
Dave Abrahams
2a1210384a
Warning suppression from Dominique Devriese <dominique.devriese-at-student.kuleuven.ac.be>
...
[SVN r18288]
2003-04-22 14:21:37 +00:00
Dave Abrahams
b8028729eb
NULL shared_ptr conversions, more tests for custom to-python shared_ptr registrations
...
[SVN r18263]
2003-04-16 14:32:14 +00:00
Dave Abrahams
30e7768a87
warning suppression
...
[SVN r18261]
2003-04-16 14:29:27 +00:00
Dave Abrahams
ccd84c0be6
Small changes to support new iterator adaptors in sandbox
...
[SVN r18212]
2003-04-09 11:57:59 +00:00
Dave Abrahams
a86deed5f6
dummy
...
[SVN r18158]
2003-04-02 12:57:33 +00:00
Dave Abrahams
3fd9ad7a60
implement static data members
...
[SVN r18157]
2003-04-02 12:56:37 +00:00
Ralf W. Grosse-Kunstleve
1c3d08f23a
adjustment for MIPSpro
...
[SVN r17865]
2003-03-12 23:18:16 +00:00
Dave Abrahams
cd06018820
opaque pointer conversions from Gottfried.Ganssauge@haufe.de
...
[SVN r17859]
2003-03-12 17:56:41 +00:00
Dave Abrahams
9813f4b55f
Fix copyrights
...
[SVN r17840]
2003-03-12 13:50:18 +00:00
Dave Abrahams
f81ca21b22
opaque pointer conversions from Gottfried.Ganssauge@haufe.de
...
Acknowledgements for all
[SVN r17834]
2003-03-12 12:47:44 +00:00
Ralf W. Grosse-Kunstleve
34bf1560a9
non-template function make_function1 must be inline
...
[SVN r17791]
2003-03-09 17:26:06 +00:00
Dave Abrahams
39195ac97a
Fix for older EDGs
...
[SVN r17786]
2003-03-08 12:36:18 +00:00
Dave Abrahams
6aa71e1f72
Remove flotsam
...
[SVN r17783]
2003-03-08 08:53:19 +00:00
Dave Abrahams
257a6c45f8
Remove flotsam
...
[SVN r17782]
2003-03-08 08:51:45 +00:00
Dave Abrahams
ca64c96133
Added dangling_reference FAQ
...
Various idiomatic MPL cleanups in indirect_traits.hpp
raw_function support
Patches for CWPro7.2
Patches to pass tests under Python 2.3 with the new bool type.
Tests for member operators returning const objects
Fixes for testing Boost.Python under Cygwin
[SVN r17777]
2003-03-08 03:53:19 +00:00
Ralf W. Grosse-Kunstleve
ff734e3269
MIPSpro compatibility
...
[SVN r17772]
2003-03-08 00:25:47 +00:00
Dave Abrahams
d028a60cc2
Workaround for vc7 bug (and regression test)
...
[SVN r17708]
2003-03-03 17:21:30 +00:00