summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2004-08-07 20:11:22 (GMT)
committerMichael W. Hudson <mwh@python.net>2004-08-07 20:11:22 (GMT)
commit8c47f4a6578e9886c857d92b3a0ac5e1294be7a9 (patch)
tree2cf1fc5c7192f19064b6e8a97b368a04621908df
parent79f7ad228b0f7d5c4609e790d9a06345f36a5aaf (diff)
downloadcpython-8c47f4a6578e9886c857d92b3a0ac5e1294be7a9.zip
cpython-8c47f4a6578e9886c857d92b3a0ac5e1294be7a9.tar.gz
cpython-8c47f4a6578e9886c857d92b3a0ac5e1294be7a9.tar.bz2
eval_frame now has a PyAPI-style name
-rw-r--r--Misc/gdbinit2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/gdbinit b/Misc/gdbinit
index b3b4946..145cc3a 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