diff options
author | Georg Brandl <georg@python.org> | 2010-11-03 07:41:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-03 07:41:00 (GMT) |
commit | 0a9397fcf38e83d91d4396d56831d4631ba67a80 (patch) | |
tree | af1966764ed3e0d099a599a42c0676ffad759eed /Misc/gdbinit | |
parent | a01799f71a3b5b24a1e2ab183c872d1f311e22ec (diff) | |
download | cpython-0a9397fcf38e83d91d4396d56831d4631ba67a80.zip cpython-0a9397fcf38e83d91d4396d56831d4631ba67a80.tar.gz cpython-0a9397fcf38e83d91d4396d56831d4631ba67a80.tar.bz2 |
A newline in lineno output breaks pyframe output.
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 275df10..9484b51 100644 --- a/Misc/gdbinit +++ b/Misc/gdbinit @@ -66,7 +66,7 @@ define lineno set $__p = $__p + 1 end end - printf "%d\n", $__li + printf "%d", $__li end # print the current frame - verbose |