Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 05473ed

Browse files
committed
Added prototype for PyInstance_NewRaw().
1 parent 9ca35ec commit 05473ed

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Include/classobject.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ extern DL_IMPORT(PyTypeObject) PyClass_Type, PyInstance_Type, PyMethod_Type;
4242
extern DL_IMPORT(PyObject *) PyClass_New(PyObject *, PyObject *, PyObject *);
4343
extern DL_IMPORT(PyObject *) PyInstance_New(PyObject *, PyObject *,
4444
PyObject *);
45+
extern DL_IMPORT(PyObject *) PyInstance_NewRaw(PyObject *, PyObject *);
4546
extern DL_IMPORT(PyObject *) PyMethod_New(PyObject *, PyObject *, PyObject *);
4647

4748
extern DL_IMPORT(PyObject *) PyMethod_Function(PyObject *);

0 commit comments

Comments
 (0)