diff options
-rw-r--r-- | Misc/gdbinit | 2 |
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 |