eric6/DebugClients/Python/DebugClientBase.py

branch
multi_processing
changeset 7411
6d8dcb3551b3
parent 7409
1413bfe73d41
child 7412
0a995393d2ba
--- a/eric6/DebugClients/Python/DebugClientBase.py	Wed Feb 12 20:04:31 2020 +0100
+++ b/eric6/DebugClients/Python/DebugClientBase.py	Thu Feb 13 19:27:10 2020 +0100
@@ -232,6 +232,7 @@
         self.test = None
         self.debugging = False
         self.multiprocessSupport = False
+        self.noDebugList = []
         
         self.fork_auto = False
         self.fork_child = False
@@ -329,6 +330,7 @@
 
         self.debugging = False
         self.multiprocessSupport = False
+        self.noDebugList = []
         
         # make sure we close down our end of the socket
         # might be overkill as normally stdin, stdout and stderr
@@ -836,6 +838,9 @@
         elif method == "RequestShutdown":
             self.sessionClose()
         
+        elif method == "RequestSetNoDebugList":
+            self.noDebugList = params["noDebug"][:]
+        
         elif method == "RequestCompletion":
             self.__completionList(params["text"])
         

eric ide

mercurial