mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
Patch #1191700: Adjust column alignment in bdb breakpoint lists.
Backported to 2.4.
This commit is contained in:
parent
7e75f1aafb
commit
4b501e6c7d
2 changed files with 5 additions and 3 deletions
|
@ -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,)
|
||||
|
|
|
@ -68,6 +68,8 @@ Extension Modules
|
|||
Library
|
||||
-------
|
||||
|
||||
- Patch #1191700: Adjust column alignment in bdb breakpoint lists.
|
||||
|
||||
- SimpleXMLRPCServer relied on the fcntl module, which is unavailable on
|
||||
Windows. Bug #1469163.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue