From: Georg Brandl Date: Sat, 4 Dec 2010 16:22:44 +0000 (+0000) Subject: Fix accidental checkin. X-Git-Tag: v3.2b1~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8b893ec622e37c31f6f9ec3a666bba3195c15f8;p=thirdparty%2FPython%2Fcpython.git Fix accidental checkin. --- diff --git a/Lib/bdb.py b/Lib/bdb.py index 08dce8f2f9f0..9f5e7ae630d0 100644 --- a/Lib/bdb.py +++ b/Lib/bdb.py @@ -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