From: Martin v. Löwis Date: Sat, 15 Apr 2006 08:40:53 +0000 (+0000) Subject: Patch #1191700: Adjust column alignment in bdb breakpoint lists. X-Git-Tag: v2.4.4c1~261 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a2e7bd5b3efddcc2256bef5cfc9fcf6f38ca168;p=thirdparty%2FPython%2Fcpython.git Patch #1191700: Adjust column alignment in bdb breakpoint lists. --- diff --git a/Lib/bdb.py b/Lib/bdb.py index 8f808cc4eb71..08b48c39ce58 100644 --- a/Lib/bdb.py +++ b/Lib/bdb.py @@ -479,10 +479,10 @@ class Breakpoint: 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,) diff --git a/Misc/NEWS b/Misc/NEWS index c0fa641e65a3..f07bff7ab737 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -29,6 +29,8 @@ Extension Modules Library ------- +- Patch #1191700: Adjust column alignment in bdb breakpoint lists. + - The email module's parsedate_tz function now sets the daylight savings flag to -1 (unknown) since it can't tell from the date whether it should be set.