diff options
author | Georg Brandl <georg@python.org> | 2010-12-04 16:22:44 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-04 16:22:44 (GMT) |
commit | f8b893ec622e37c31f6f9ec3a666bba3195c15f8 (patch) | |
tree | 871bb74e58e023e159b7b8741f9ac480be483a0b /Lib/bdb.py | |
parent | cbc79c76a8fd11660ac6aa7681ed1d9e75d5df2e (diff) | |
download | cpython-f8b893ec622e37c31f6f9ec3a666bba3195c15f8.zip cpython-f8b893ec622e37c31f6f9ec3a666bba3195c15f8.tar.gz cpython-f8b893ec622e37c31f6f9ec3a666bba3195c15f8.tar.bz2 |
Fix accidental checkin.
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r-- | Lib/bdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -214,7 +214,7 @@ class Bdb: def set_continue(self): # Don't stop except at breakpoints or when finished self._set_stopinfo(self.botframe, None, -1) - if not self.breaks and not self.watching: + if not self.breaks: # no breakpoints; run without debugger overhead sys.settrace(None) frame = sys._getframe().f_back |