mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Whitespace normalization.
This commit is contained in:
parent
f6922aa435
commit
11cf605f84
3 changed files with 98 additions and 98 deletions
|
@ -452,13 +452,13 @@ class Breakpoint:
|
||||||
|
|
||||||
def bpprint(self):
|
def bpprint(self):
|
||||||
if self.temporary:
|
if self.temporary:
|
||||||
disp = 'del '
|
disp = 'del '
|
||||||
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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue