Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6683617

Browse files
committed
Normalize whitespace.
1 parent ff02e1d commit 6683617

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Lib/bdb.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,16 @@ def stop_here(self, frame):
8686
return 0
8787

8888
def break_here(self, frame):
89-
filename=frame.f_code.co_filename
89+
filename=frame.f_code.co_filename
9090
if not self.breaks.has_key(filename):
9191
return 0
9292
lineno=frame.f_lineno
9393
if not lineno in self.breaks[filename]:
9494
return 0
9595
if self.cbreaks.has_key((filename, lineno)):
96-
cond=self.cbreaks[filename, lineno]
97-
return eval(cond, frame.f_globals,
98-
frame.f_locals)
96+
cond=self.cbreaks[filename, lineno]
97+
return eval(cond, frame.f_globals,
98+
frame.f_locals)
9999
return 1
100100

101101
def break_anywhere(self, frame):

0 commit comments

Comments
 (0)