Joel de Guzman
b705931ff0
tweak: wrong c++ code written in python
...
[SVN r31307]
2005-10-13 11:58:53 +00:00
Eric Niebler
2974286209
fix bugs in example code
...
[SVN r31305]
2005-10-12 20:17:28 +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
Ralf W. Grosse-Kunstleve
67a7669ff4
work around Visual C++ 6 problem
...
[SVN r31075]
2005-09-22 06:20:25 +00:00
Stefan Seefeld
e80545a7d3
Use BOOST_ASSERT instead of std::runtime_error to indicate errors.
...
[SVN r30954]
2005-09-13 14:42:03 +00:00
Stefan Seefeld
6afe0d4732
Enhance and clean up tests.
...
[SVN r30907]
2005-09-11 14:50:37 +00:00
Ralf W. Grosse-Kunstleve
f8280b0e1a
David Abrahams, Jul 2005: according to 8.5/9 the __GNUC__ workaround at line 69 of data_members.cpp should be made universal.
...
[SVN r30893]
2005-09-10 05:53:28 +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
6074a23242
Fix exec test.
...
[SVN r30669]
2005-08-25 15:03:19 +00:00
Dave Abrahams
9ceac3ff8f
Fix bug in example thanks to Roman Yakovenko.
...
[SVN r30616]
2005-08-21 15:19:51 +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
262bcee750
Fix broken links
...
[SVN r30401]
2005-08-03 12:25:30 +00:00
Dave Abrahams
a3f12b18b1
Fix broken links
...
[SVN r30398]
2005-08-03 11:39:39 +00:00
Ralf W. Grosse-Kunstleve
ad635ec2d1
include order according to Python's rules
...
[SVN r30242]
2005-07-26 01:19:18 +00:00
Dave Abrahams
affd36e857
Fix up problem report issues (tabs, broken links, unlinked)
...
[SVN r30241]
2005-07-25 21:20:10 +00:00
Dave Abrahams
332a45f333
untabify
...
[SVN r30239]
2005-07-25 20:57:30 +00:00
Joel de Guzman
6cc48f7e5d
adjusting link to libraries.html
...
[SVN r29999]
2005-07-12 07:53:00 +00:00
Joel de Guzman
5b6192d738
Tutorial bug fix (__init__ gets interpreted as underlined _init_ by quickbook)
...
[SVN r29970]
2005-07-10 20:06:21 +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
Dave Abrahams
331209d8b5
Fix link in news
...
Improve assertions in indirect_traits_test by making them compile-time
and using MPL assert primitives
[SVN r29782]
2005-06-24 15:42:22 +00:00
Dave Abrahams
9116cf382b
Fix reference search URL
...
[SVN r29635]
2005-06-17 02:55:31 +00:00
Dave Abrahams
8cc2b7a5df
Add search box
...
[SVN r29626]
2005-06-16 17:49:38 +00:00
Joel de Guzman
dab01ad668
Typo fix (objecto)
...
[SVN r29625]
2005-06-16 17:26:00 +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
70ee460a14
Py_Initialize outside the first test routine
...
[SVN r29167]
2005-05-24 12:20:03 +00:00
Douglas Gregor
07c95aea4e
gcc-3_3-darwin also needs -bind_at_load
...
[SVN r29102]
2005-05-20 20:12:29 +00:00
Dave Abrahams
a3d8a384fa
Workaround for compilers that have trouble with lexical_cast.
...
[SVN r29033]
2005-05-18 14:11:20 +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
adb7b62a62
gcc workarounds
...
[SVN r28946]
2005-05-16 02:49:14 +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
Joel de Guzman
3ce88daa8b
Tutorial Updates for Building BPL Projects
...
[SVN r28889]
2005-05-14 02:50:34 +00:00
Dave Abrahams
4cec6c4f2f
Added copyright
...
[SVN r28780]
2005-05-10 11:53:17 +00:00
Brett Calcott
e38bf06257
updated visual studio project build file to include two new files (slice.cpp and wrapper.cpp)
...
updated email address for maintainer of visual studio files.
[SVN r28732]
2005-05-08 09:55:43 +00:00
Joel de Guzman
0deed1ff9b
removing unnecessary file
...
[SVN r28584]
2005-05-02 15:57:42 +00:00
Joel de Guzman
a05a0ae46b
Python now correctly syntax colorized + some minor tweaks
...
[SVN r28581]
2005-05-02 15:51:26 +00:00
Dave Abrahams
fe3906a7cb
Fix broken vc6 compatibility
...
[SVN r28515]
2005-04-28 14:15:19 +00:00
Bruno da Silva de Oliveira
e5ed3a1c6c
Fixed bug where the code for wrappers of member functions were defined outside
...
the pyste namespace. Reported by Dan Haffey.
[SVN r28479]
2005-04-25 23:49:21 +00:00
Bruno da Silva de Oliveira
2bbff71109
*** empty log message ***
...
[SVN r28478]
2005-04-25 23:49:04 +00:00
Victor A. Wagner Jr.
c492551111
Deleted - an extraneous \r at the end of lines which causes vc8.0 to mistake the
...
files for some created on the Mac (apparently a HENIOUS crime which is intolerable
to those at Microsoft and which must be considered an error)
Changed - the version of python mentioned specifically from 2.3 to 2.4
[SVN r28471]
2005-04-25 10:01:07 +00:00
Vladimir Prus
b217c4ffa8
Replace 'run-pyd' with 'bpl-test' in a couple of places. The former does
...
not produce the .test files that regression tools want.
[SVN r28213]
2005-04-13 11:42:50 +00:00
Ralf W. Grosse-Kunstleve
96e9d6a872
std_pair jam rules and test
...
[SVN r27876]
2005-03-30 00:36:02 +00:00
Ralf W. Grosse-Kunstleve
fef288fed2
new std::pair to_python_converter example
...
[SVN r27875]
2005-03-29 23:02:45 +00:00
Stefan Slapeta
2fdb98079d
Intel workaround extended to 9.0
...
[SVN r27861]
2005-03-29 07:41:34 +00:00