diff options
author | Georg Brandl <georg@python.org> | 2010-11-03 07:41:00 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-03 07:41:00 +0000 |
commit | 6f1c341cd4c70a8858731b6cbc65a6ba670bf935 (patch) | |
tree | ac6b90909d8c60932815655ffae97236737036d1 /Misc/gdbinit | |
parent | fc16fabb32a501b4b72ef2ec48cfcad1f0c79f1c (diff) | |
download | cpython-6f1c341cd4c70a8858731b6cbc65a6ba670bf935.tar.gz |
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 275df10083..9484b51824 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 |