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

Skip to content

Commit 6a25e21

Browse files
committed
Add prototype for PyObject_Dump().
1 parent 903138f commit 6a25e21

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Include/object.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ extern DL_IMPORT(PyTypeObject) PyType_Type; /* The type of type objects */
264264

265265
/* Generic operations on objects */
266266
extern DL_IMPORT(int) PyObject_Print(PyObject *, FILE *, int);
267+
extern DL_IMPORT(void) PyObject_Dump(PyObject *);
267268
extern DL_IMPORT(PyObject *) PyObject_Repr(PyObject *);
268269
extern DL_IMPORT(PyObject *) PyObject_Str(PyObject *);
269270
extern DL_IMPORT(PyObject *) PyObject_Unicode(PyObject *);

0 commit comments

Comments
 (0)