2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-25 06:22:15 +00:00

Merge Trunk changes to RC_1_29_0

[SVN r15732]
This commit is contained in:
Dave Abrahams
2002-10-05 12:53:06 +00:00
parent 0462c4d2f4
commit c33ac6b47a
154 changed files with 4121 additions and 9390 deletions

View File

@@ -110,7 +110,7 @@ struct main_args {
int python_main(main_args const &ma);
// python module init
BOOST_PYTHON_MODULE_INIT(python_main)
BOOST_PYTHON_MODULE(python_main)
{
DEF(python_main);
CLASS(main_args);
@@ -121,7 +121,7 @@ namespace sm {
int test_func() { return 7; }
BOOST_PYTHON_MODULE_INIT(sm_test)
BOOST_PYTHON_MODULE(sm_test)
{
// define a submodule
boost::python::module(".sm");
@@ -160,7 +160,7 @@ c1::c2 test_func() {
return c1().t;
}
BOOST_PYTHON_MODULE_INIT(sc_test)
BOOST_PYTHON_MODULE(sc_test)
{
class_<c1::c2>("c1.c2")
.def_init()