summaryrefslogtreecommitdiff
path: root/Misc/gdbinit
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2004-08-07 20:11:22 +0000
committerMichael W. Hudson <mwh@python.net>2004-08-07 20:11:22 +0000
commit5f9e2d50ff9564382f3da84c52779c5defbac97a (patch)
treec9ed4a62d957be93b9aa5716c1b3313c82dad6df /Misc/gdbinit
parent441160fff875c712785c35c0049567fa062e3f31 (diff)
downloadcpython-5f9e2d50ff9564382f3da84c52779c5defbac97a.tar.gz
eval_frame now has a PyAPI-style name
Diffstat (limited to 'Misc/gdbinit')
-rw-r--r--Misc/gdbinit2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/gdbinit b/Misc/gdbinit
index b3b4946a43..145cc3a312 100644
--- a/Misc/gdbinit
+++ b/Misc/gdbinit
@@ -65,7 +65,7 @@ end
# print the entire Python call stack
define pystack
while $pc < Py_Main || $pc > Py_GetArgcArgv
- if $pc > eval_frame && $pc < PyEval_EvalCodeEx
+ if $pc > PyEval_EvalFrame && $pc < PyEval_EvalCodeEx
pyframe
end
up-silently 1