[Python-checkins] r45420 - in python/branches/release24-maint: Lib/bdb.py Misc/NEWS (original) (raw)
martin.v.loewis python-checkins at python.org
Sat Apr 15 10:40:55 CEST 2006
- Previous message: [Python-checkins] r45419 - in python/trunk: Misc/NEWS Modules/socketmodule.c
- Next message: [Python-checkins] r45421 - in python/trunk: Lib/bdb.py Misc/NEWS
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: martin.v.loewis Date: Sat Apr 15 10:40:53 2006 New Revision: 45420
Modified: python/branches/release24-maint/Lib/bdb.py python/branches/release24-maint/Misc/NEWS Log: Patch #1191700: Adjust column alignment in bdb breakpoint lists.
Modified: python/branches/release24-maint/Lib/bdb.py
--- python/branches/release24-maint/Lib/bdb.py (original) +++ python/branches/release24-maint/Lib/bdb.py Sat Apr 15 10:40:53 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/branches/release24-maint/Misc/NEWS
--- python/branches/release24-maint/Misc/NEWS (original) +++ python/branches/release24-maint/Misc/NEWS Sat Apr 15 10:40:53 2006 @@ -29,6 +29,8 @@ 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.
- Previous message: [Python-checkins] r45419 - in python/trunk: Misc/NEWS Modules/socketmodule.c
- Next message: [Python-checkins] r45421 - in python/trunk: Lib/bdb.py Misc/NEWS
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]