2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 05:42:30 +00:00

Concatentation subsequent function docstrings rather than replace the original.

[SVN r27332]
This commit is contained in:
Jonathan Brandmeyer
2005-02-11 20:03:13 +00:00
parent 1cfa79554d
commit 4d50bf0ad9
4 changed files with 18 additions and 5 deletions

View File

@@ -47,6 +47,8 @@ BOOST_PYTHON_MODULE(docstring_ext)
)
.def("value", &X::value,
"gets the value of the object")
.def( "value", &X::value,
"also gets the value of the object")
;
def("create", create, return_value_policy<manage_new_object>(),