diff options
author | Georg Brandl <georg@python.org> | 2009-07-23 09:19:09 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-07-23 09:19:09 +0000 |
commit | 3c556ce39ec34376c5a5425d74eca5dfcbae470f (patch) | |
tree | 58dd6d17259fce27f8fcc79dbf0f89aa8aa0c587 | |
parent | 77e3a9cfedabb84811f0218565f013dbcf72e356 (diff) | |
download | cpython-3c556ce39ec34376c5a5425d74eca5dfcbae470f.tar.gz |
Recorded merge of revisions 74185 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74185 | georg.brandl | 2009-07-23 11:17:09 +0200 (Do, 23 Jul 2009) | 1 line
Fix the "pylocals" gdb command.
........
-rw-r--r-- | Misc/gdbinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/gdbinit b/Misc/gdbinit index 74ddbec363..33de7846a7 100644 --- a/Misc/gdbinit +++ b/Misc/gdbinit @@ -29,7 +29,7 @@ end # print the local variables of the current frame define pylocals set $_i = 0 - while $_i < f->f_nlocals + while $_i < f->f_code->co_nlocals if f->f_localsplus + $_i != 0 set $_names = co->co_varnames set $_name = _PyUnicode_AsString(PyTuple_GetItem($_names, $_i)) |