From: Fred Drake Date: Sun, 28 Jan 2001 03:52:08 +0000 (+0000) Subject: Added prototype for PyInstance_NewRaw(). X-Git-Tag: v2.1a2~123 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05473edbe5a4d4f96769062a13550d403dd42f17;p=python Added prototype for PyInstance_NewRaw(). --- diff --git a/Include/classobject.h b/Include/classobject.h index 666704c754..8fde040256 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 *);