DebugClients/Python2/DebugThread.py

changeset 5161
f7b6ded9cc37
parent 5133
b7fe69c6cb1c
diff -r d8908660fc65 -r f7b6ded9cc37 DebugClients/Python2/DebugThread.py
--- a/DebugClients/Python2/DebugThread.py	Sat Sep 10 19:32:56 2016 +0200
+++ b/DebugClients/Python2/DebugThread.py	Sun Sep 11 13:11:58 2016 +0200
@@ -40,7 +40,7 @@
         self._kwargs = kwargs
         self._mainThread = mainThread
         # thread running tracks execution state of client code
-        # it will always be 0 for main thread as that is tracked
+        # it will always be False for main thread as that is tracked
         # by DebugClientThreads and Bdb...
         self._threadRunning = False
         
@@ -78,7 +78,7 @@
         """
         self.set_trace()
         if not self._mainThread:
-            self.set_continue(0)
+            self.set_continue(False)
     
     def bootstrap(self):
         """

eric ide

mercurial