[Python-checkins] r45421 - in python/trunk: Lib/bdb.py Misc/NEWS

martin.v.loewis python-checkins at python.org
Sat Apr 15 10:41:11 CEST 2006


Author: martin.v.loewis
Date: Sat Apr 15 10:41:11 2006
New Revision: 45421

Modified:
   python/trunk/Lib/bdb.py
   python/trunk/Misc/NEWS
Log:
Patch #1191700: Adjust column alignment in bdb breakpoint lists.
Backported to 2.4.


Modified: python/trunk/Lib/bdb.py
==============================================================================
--- python/trunk/Lib/bdb.py	(original)
+++ python/trunk/Lib/bdb.py	Sat Apr 15 10:41:11 2006
@@ -479,10 +479,10 @@
         else:
             disp = 'keep '
         if self.enabled:
-            disp = disp + 'yes'
+            disp = disp + 'yes  '
         else:
-            disp = disp + 'no '
-        print '%-4dbreakpoint    %s at %s:%d' % (self.number, disp,
+            disp = disp + 'no   '
+        print '%-4dbreakpoint   %s at %s:%d' % (self.number, disp,
                              self.file, self.line)
         if self.cond:
             print '\tstop only if %s' % (self.cond,)

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Sat Apr 15 10:41:11 2006
@@ -68,6 +68,8 @@
 Library
 -------
 
+- Patch #1191700: Adjust column alignment in bdb breakpoint lists.
+
 - SimpleXMLRPCServer relied on the fcntl module, which is unavailable on
   Windows. Bug #1469163.
 


More information about the Python-checkins mailing list