2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 06:42:27 +00:00

Changed args<...> to init<...> and changed class_(no_init) to class_("name", no_init)

[SVN r15345]
This commit is contained in:
Joel de Guzman
2002-09-15 21:42:49 +00:00
parent 604928adc4
commit b37198106d
20 changed files with 45 additions and 52 deletions

View File

@@ -36,23 +36,24 @@ BOOST_PYTHON_MODULE_INIT(docstring_ext)
"A simple test module for documentation strings\n"
"Exercised by docstring.py"
;
class_<X>("X",
"A simple class wrapper around a C++ int\n"
"includes some error-checking"
, args<int>(),
"this is the __init__ function\n"
"its documentation has two lines."
, init<int>(
"this is the __init__ function\n"
"its documentation has two lines."
)
)
.def("value", &X::value,
"gets the value of the object")
;
def("create", create, return_value_policy<manage_new_object>(),
"creates a new X object");
def("fact", fact, "compute the factorial");
}