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

Stop exporting the TypeObject

[SVN r13308]
This commit is contained in:
Dave Abrahams
2002-03-30 01:22:18 +00:00
parent 383a51dde8
commit 4a81d366bb
2 changed files with 1 additions and 2 deletions

View File

@@ -40,8 +40,6 @@ struct BOOST_PYTHON_DECL function : PyObject
function* m_overloads;
};
extern BOOST_PYTHON_DECL PyTypeObject function_type;
//
// implementations
//

View File

@@ -11,6 +11,7 @@
namespace boost { namespace python { namespace objects {
extern PyTypeObject function_type;
function::function(py_function implementation, unsigned min_args, unsigned max_args)
: m_fn(implementation)