diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2003-10-03 20:56:15 +0000 |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2003-10-03 20:56:15 +0000 |
commit | f64ec0f2a1048fde833cb81f1ee199d0d2b507ac (patch) | |
tree | 6d9c43689d32d41651c69556acc7429d5e7e7b0b /Misc/gdbinit | |
parent | d46e684edd5b75f9674af2acd730c1a2f03655ed (diff) | |
download | cpython-git-f64ec0f2a1048fde833cb81f1ee199d0d2b507ac.tar.gz |
A helper to dump info about the current frame,
assuming it is the variable f.
Diffstat (limited to 'Misc/gdbinit')
-rw-r--r-- | Misc/gdbinit | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Misc/gdbinit b/Misc/gdbinit index ae333b2686..05f6a9151c 100644 --- a/Misc/gdbinit +++ b/Misc/gdbinit @@ -25,3 +25,12 @@ end define pyg print _PyGC_Dump($arg0) end + +# If you are in an eval_frame() function, calling pyframe with no +# arguments will print the filename, function name, and line number. +# It assumes that f is the name of the current frame. +define pyframe +x/s ((PyStringObject*)f->f_code->co_filename)->ob_sval +x/s ((PyStringObject*)f->f_code->co_name)->ob_sval +p f->f_lineno +end |