]> granicus.if.org Git - python/commitdiff
PyObject_Dump() -> _PyObject_Dump()
authorBarry Warsaw <barry@python.org>
Wed, 24 Jan 2001 04:16:59 +0000 (04:16 +0000)
committerBarry Warsaw <barry@python.org>
Wed, 24 Jan 2001 04:16:59 +0000 (04:16 +0000)
Include/object.h

index 5a81e1e0b9d4abdeb4ea649c8e1610542a0b055b..050369191adebeedee646577ee5cbc6bd04ea4ab 100644 (file)
@@ -264,7 +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(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 *);