summaryrefslogtreecommitdiff
path: root/Include/classobject.h
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-01-28 03:52:08 +0000
committerFred Drake <fdrake@acm.org>2001-01-28 03:52:08 +0000
commit05473edbe5a4d4f96769062a13550d403dd42f17 (patch)
treecf48b05caa07dc440aff8ffc6bca237f33f25bf3 /Include/classobject.h
parent9ca35ec97ae5b2d42da21c75fa2d082409892c10 (diff)
downloadcpython-git-05473edbe5a4d4f96769062a13550d403dd42f17.tar.gz
Added prototype for PyInstance_NewRaw().
Diffstat (limited to 'Include/classobject.h')
-rw-r--r--Include/classobject.h1
1 files changed, 1 insertions, 0 deletions
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 *);