[Python-3000-checkins] r53708 - python/branches/p3yk/Lib/pdb.py

guido.van.rossum python-3000-checkins at python.org
Fri Feb 9 23:16:54 CET 2007


Author: guido.van.rossum
Date: Fri Feb  9 23:16:54 2007
New Revision: 53708

Modified:
   python/branches/p3yk/Lib/pdb.py
Log:
Fix a bogus end=' ' here.


Modified: python/branches/p3yk/Lib/pdb.py
==============================================================================
--- python/branches/p3yk/Lib/pdb.py	(original)
+++ python/branches/p3yk/Lib/pdb.py	Fri Feb  9 23:16:54 2007
@@ -740,7 +740,7 @@
                     else: s = s + ' '
                     if lineno == self.curframe.f_lineno:
                         s = s + '->'
-                    print(s + '\t' + line, end=' ', file=self.stdout)
+                    print(s + '\t' + line, end='', file=self.stdout)
                     self.lineno = lineno
         except KeyboardInterrupt:
             pass


More information about the Python-3000-checkins mailing list