summaryrefslogtreecommitdiff
path: root/Misc/gdbinit
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-01-24 04:18:13 +0000
committerBarry Warsaw <barry@python.org>2001-01-24 04:18:13 +0000
commitbbd89b66b1b3c44836f560b60c7a176a6172f148 (patch)
tree2f398ad0b4a836ba8c7de071de04ce9e597f8d26 /Misc/gdbinit
parent430d773f555d43c5bff73180b8b3746b480a0a8a (diff)
downloadcpython-git-bbd89b66b1b3c44836f560b60c7a176a6172f148.tar.gz
PyObject_Dump() -> _PyObject_Dump()
PyGC_Dump() -> _PyGC_Dump()
Diffstat (limited to 'Misc/gdbinit')
-rw-r--r--Misc/gdbinit4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/gdbinit b/Misc/gdbinit
index a164f4266c..ae333b2686 100644
--- a/Misc/gdbinit
+++ b/Misc/gdbinit
@@ -16,12 +16,12 @@
# number of reference counts it current has and the hex address the
# object is allocated at. The argument must be a PyObject*
define pyo
-print PyObject_Dump($arg0)
+print _PyObject_Dump($arg0)
end
# Prints a representation of the object to stderr, along with the
# number of reference counts it current has and the hex address the
# object is allocated at. The argument must be a PyGC_Head*
define pyg
-print PyGC_Dump($arg0)
+print _PyGC_Dump($arg0)
end