Whitespace normalization

This commit is contained in:
Neal Norwitz 2002-05-29 00:54:38 +00:00
parent 1a7ac359a0
commit 72a2b4d43f
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ class Bdb:
# definition of stopping and breakpoints. # definition of stopping and breakpoints.
def stop_here(self, frame): def stop_here(self, frame):
# (CT) stopframe may now also be None, see dispatch_call. # (CT) stopframe may now also be None, see dispatch_call.
# (CT) the former test for None is therefore removed from here. # (CT) the former test for None is therefore removed from here.
if frame is self.stopframe: if frame is self.stopframe:
return True return True
while frame is not None and frame is not self.stopframe: while frame is not None and frame is not self.stopframe: