diff options
author | Fred Drake <fdrake@acm.org> | 2001-01-28 03:52:08 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-01-28 03:52:08 (GMT) |
commit | 05473edbe5a4d4f96769062a13550d403dd42f17 (patch) | |
tree | cf48b05caa07dc440aff8ffc6bca237f33f25bf3 /Include/classobject.h | |
parent | 9ca35ec97ae5b2d42da21c75fa2d082409892c10 (diff) | |
download | cpython-05473edbe5a4d4f96769062a13550d403dd42f17.zip cpython-05473edbe5a4d4f96769062a13550d403dd42f17.tar.gz cpython-05473edbe5a4d4f96769062a13550d403dd42f17.tar.bz2 |
Added prototype for PyInstance_NewRaw().
Diffstat (limited to 'Include/classobject.h')
-rw-r--r-- | Include/classobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/classobject.h b/Include/classobject.h index 666704c..8fde040 100644 --- a/Include/classobject.h +++ b/Include/classobject.h @@ -42,6 +42,7 @@ extern DL_IMPORT(PyTypeObject) PyClass_Type, PyInstance_Type, PyMethod_Type; extern DL_IMPORT(PyObject *) PyClass_New(PyObject *, PyObject *, PyObject *); extern DL_IMPORT(PyObject *) PyInstance_New(PyObject *, PyObject *, PyObject *); +extern DL_IMPORT(PyObject *) PyInstance_NewRaw(PyObject *, PyObject *); extern DL_IMPORT(PyObject *) PyMethod_New(PyObject *, PyObject *, PyObject *); extern DL_IMPORT(PyObject *) PyMethod_Function(PyObject *); |