diff options
author | Michael W. Hudson <mwh@python.net> | 2004-08-07 20:11:22 +0000 |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2004-08-07 20:11:22 +0000 |
commit | 8c47f4a6578e9886c857d92b3a0ac5e1294be7a9 (patch) | |
tree | 2cf1fc5c7192f19064b6e8a97b368a04621908df /Misc/gdbinit | |
parent | 79f7ad228b0f7d5c4609e790d9a06345f36a5aaf (diff) | |
download | cpython-git-8c47f4a6578e9886c857d92b3a0ac5e1294be7a9.tar.gz |
eval_frame now has a PyAPI-style name
Diffstat (limited to 'Misc/gdbinit')
-rw-r--r-- | Misc/gdbinit | 2 |
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 |