[Python-checkins] r87048 - python/branches/py3k/Lib/bdb.py

georg.brandl python-checkins at python.org
Sat Dec 4 17:22:45 CET 2010


Author: georg.brandl
Date: Sat Dec  4 17:22:44 2010
New Revision: 87048

Log:
Fix accidental checkin.

Modified:
   python/branches/py3k/Lib/bdb.py

Modified: python/branches/py3k/Lib/bdb.py
==============================================================================
--- python/branches/py3k/Lib/bdb.py	(original)
+++ python/branches/py3k/Lib/bdb.py	Sat Dec  4 17:22:44 2010
@@ -214,7 +214,7 @@
     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


More information about the Python-checkins mailing list