]> granicus.if.org Git - python/commitdiff
Add prototype for PyObject_Dump().
authorBarry Warsaw <barry@python.org>
Tue, 23 Jan 2001 16:33:56 +0000 (16:33 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 23 Jan 2001 16:33:56 +0000 (16:33 +0000)
Include/object.h

index 818786a7385a92bfb023f864cad105cf34b7cd29..5a81e1e0b9d4abdeb4ea649c8e1610542a0b055b 100644 (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 *);