summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-01-24 04:16:59 (GMT)
committerBarry Warsaw <barry@python.org>2001-01-24 04:16:59 (GMT)
commit10418eb80f620ab82f5536f34050a73af7179e04 (patch)
tree0a62a9793391cd08803e38e70bc2cccd1615f438 /Include
parentf44939105ae03b7c7ce19f834c13685af27bf7d3 (diff)
downloadcpython-10418eb80f620ab82f5536f34050a73af7179e04.zip
cpython-10418eb80f620ab82f5536f34050a73af7179e04.tar.gz
cpython-10418eb80f620ab82f5536f34050a73af7179e04.tar.bz2
PyObject_Dump() -> _PyObject_Dump()
Diffstat (limited to 'Include')
-rw-r--r--Include/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h
index 5a81e1e..0503691 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -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 *);