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
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to