mirror of
https://github.com/boostorg/python.git
synced 2026-01-22 17:32:55 +00:00
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
23 May 2003
|
|
Support for global variables added.
|
|
Various bug fixes.
|
|
|
|
08 May 2003
|
|
Fixed bug where in a certain cases the GCCXMLParser would end up with multiple
|
|
declarations of the same class
|
|
|
|
22 Apr 2003
|
|
- Now shows a warning when the user tries to export a forward-declared class. Forward-declared classes are ignored by the AllFromHeader construct.
|
|
- Fixed a bug where classes, functions and enums where being exported, even if excluded from a AllFromHeader construct.
|
|
|
|
16 Apr 2003
|
|
Added a more generic (but ugly) code to declare the smart pointer converters.
|
|
|
|
07 Apr 2003
|
|
- Removed the warnings about forward declarations: it was not accurate enough.
|
|
Another strategy must be thought of.
|
|
- Fixed bug in the --multiple mode, where the order of the class instantiations
|
|
could end up wrong.
|
|
- Lots of fixes in the documentation, pointed out by Dirk Gerrits. Thanks Dirk!
|
|
- Fixed support for the return_opaque_pointer policy (the support macro was not
|
|
being declared).
|
|
|
|
|
|
06 Apr 2003
|
|
Support for the improved static data members support of Boost.Python.
|
|
|
|
05 Apr 2003
|
|
New option for generating the bindings: --multiple.
|
|
|
|
02 Apr 2003
|
|
Forward declarations are now detected and a warning is generated.
|
|
|
|
24 Mar 2003
|
|
Default policy for functions/methods that return const T& is now
|
|
return_value_policy<copy_const_reference>().
|
|
|
|
22 Mar 2003
|
|
Exporting virtual methods of the base classes in the derived classes too.
|
|
|
|
21 Mar 2003
|
|
Added manual support for boost::shared_ptr and std::auto_ptr (see doc).
|
|
|
|
19 Mar 2003
|
|
Added support for int, double, float and long operators acting as expected in
|
|
python.
|
|
|
|
14 Mar 2003
|
|
Fixed bug: Wrappers for protected and virtual methods were not being generated.
|