Fix accidental checkin.

This commit is contained in:
Georg Brandl 2010-12-04 16:22:44 +00:00
parent cbc79c76a8
commit f8b893ec62
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ class Bdb:
def set_continue(self): def set_continue(self):
# Don't stop except at breakpoints or when finished # Don't stop except at breakpoints or when finished
self._set_stopinfo(self.botframe, None, -1) 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 # no breakpoints; run without debugger overhead
sys.settrace(None) sys.settrace(None)
frame = sys._getframe().f_back frame = sys._getframe().f_back