summaryrefslogtreecommitdiffstats
path: root/Lib/bdb.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-05-29 00:54:38 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-05-29 00:54:38 (GMT)
commit72a2b4d43f3bdca9f4f32033e62d1cd0e201b792 (patch)
tree829138d38bafeec61a2885f030befbe2632ed806 /Lib/bdb.py
parent1a7ac359a0f0f5466aeed82e8cbd7f2774690c98 (diff)
downloadcpython-72a2b4d43f3bdca9f4f32033e62d1cd0e201b792.zip
cpython-72a2b4d43f3bdca9f4f32033e62d1cd0e201b792.tar.gz
cpython-72a2b4d43f3bdca9f4f32033e62d1cd0e201b792.tar.bz2
Whitespace normalization
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r--Lib/bdb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py
index adeab1b..e1a609a 100644
--- a/Lib/bdb.py
+++ b/Lib/bdb.py
@@ -91,8 +91,8 @@ class Bdb:
# definition of stopping and breakpoints.
def stop_here(self, frame):
- # (CT) stopframe may now also be None, see dispatch_call.
- # (CT) the former test for None is therefore removed from here.
+ # (CT) stopframe may now also be None, see dispatch_call.
+ # (CT) the former test for None is therefore removed from here.
if frame is self.stopframe:
return True
while frame is not None and frame is not self.stopframe: