2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 18:12:43 +00:00

beginning of object support

[SVN r14157]
This commit is contained in:
Dave Abrahams
2002-06-16 20:41:54 +00:00
parent 0b5937a396
commit c12ffa21da
44 changed files with 1895 additions and 179 deletions

View File

@@ -14,7 +14,7 @@ namespace boost { namespace python { namespace detail {
module_base::module_base(const char* name)
: m_module(
borrow(Py_InitModule(const_cast<char*>(name), initial_methods))
python::borrowed(Py_InitModule(const_cast<char*>(name), initial_methods))
)
{
}