Fix accidental checkin.
authorGeorg Brandl <georg@python.org>
Sat, 4 Dec 2010 16:22:44 +0000 (16:22 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 4 Dec 2010 16:22:44 +0000 (16:22 +0000)
Lib/bdb.py

index 08dce8f2f9f0e44a33bc74fb38562af8d267f303..9f5e7ae630d0d310b13acb3e46f7568ae35455a1 100644 (file)
@@ -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