Add prototype for PyObject_Dump().

This commit is contained in:
Barry Warsaw 2001-01-23 16:33:56 +00:00
parent 903138f775
commit 6a25e210c9

View file

@ -264,6 +264,7 @@ extern DL_IMPORT(PyTypeObject) PyType_Type; /* The type of type objects */
/* Generic operations on objects */
extern DL_IMPORT(int) PyObject_Print(PyObject *, FILE *, int);
extern DL_IMPORT(void) PyObject_Dump(PyObject *);
extern DL_IMPORT(PyObject *) PyObject_Repr(PyObject *);
extern DL_IMPORT(PyObject *) PyObject_Str(PyObject *);
extern DL_IMPORT(PyObject *) PyObject_Unicode(PyObject *);