Kaydet (Commit) 4b501e6c authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Patch #1191700: Adjust column alignment in bdb breakpoint lists.

Backported to 2.4.
üst 7e75f1aa
...@@ -479,10 +479,10 @@ class Breakpoint: ...@@ -479,10 +479,10 @@ class Breakpoint:
else: else:
disp = 'keep ' disp = 'keep '
if self.enabled: if self.enabled:
disp = disp + 'yes' disp = disp + 'yes '
else: else:
disp = disp + 'no ' disp = disp + 'no '
print '%-4dbreakpoint %s at %s:%d' % (self.number, disp, print '%-4dbreakpoint %s at %s:%d' % (self.number, disp,
self.file, self.line) self.file, self.line)
if self.cond: if self.cond:
print '\tstop only if %s' % (self.cond,) print '\tstop only if %s' % (self.cond,)
......
...@@ -68,6 +68,8 @@ Extension Modules ...@@ -68,6 +68,8 @@ Extension Modules
Library Library
------- -------
- Patch #1191700: Adjust column alignment in bdb breakpoint lists.
- SimpleXMLRPCServer relied on the fcntl module, which is unavailable on - SimpleXMLRPCServer relied on the fcntl module, which is unavailable on
Windows. Bug #1469163. Windows. Bug #1469163.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment