mirror of https://github.com/python/cpython.git
Add prototype for PyObject_Dump().
This commit is contained in:
parent
903138f775
commit
6a25e210c9
|
@ -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 *);
|
||||
|
|
Loading…
Reference in New Issue