2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-28 19:32:14 +00:00

Merging some of the more obvious changes from RC_1_34_0

[SVN r40714]
This commit is contained in:
Dave Abrahams
2007-11-03 03:25:13 +00:00
18 changed files with 1066 additions and 414 deletions

View File

@@ -90,6 +90,7 @@ BOOST_PYTHON_MODULE(args_ext)
.def("f1", &X::f, X_f_overloads(args("self", "x", "y", "z")))
.def("f2", &X::f, X_f_overloads(args("self", "x", "y", "z"), "f2's docstring"))
.def("f2", &X::f, X_f_overloads(args("x", "y", "z"), "f2's docstring"))
;
def("inner", &X::inner, "docstring", args("self", "n"), return_internal_reference<>());