[Python-checkins] r86134 - python/branches/py3k/Misc/gdbinit

georg.brandl python-checkins at python.org
Wed Nov 3 08:41:00 CET 2010


Author: georg.brandl
Date: Wed Nov  3 08:41:00 2010
New Revision: 86134

Log:
A newline in lineno output breaks pyframe output.

Modified:
   python/branches/py3k/Misc/gdbinit

Modified: python/branches/py3k/Misc/gdbinit
==============================================================================
--- python/branches/py3k/Misc/gdbinit	(original)
+++ python/branches/py3k/Misc/gdbinit	Wed Nov  3 08:41:00 2010
@@ -66,7 +66,7 @@
         set $__p = $__p + 1
       end
     end
-    printf "%d\n", $__li
+    printf "%d", $__li
 end
 
 # print the current frame - verbose


More information about the Python-checkins mailing list