eric6/Debugger/DebugServer.py

branch
multi_processing
changeset 7390
052ce4cf06c6
parent 7389
770ffcb88be5
child 7392
b6674724612a
--- a/eric6/Debugger/DebugServer.py	Sun Feb 02 16:41:40 2020 +0100
+++ b/eric6/Debugger/DebugServer.py	Sun Feb 02 19:29:56 2020 +0100
@@ -1792,6 +1792,7 @@
         """
         Public method to process the last client exit event.
         """
+        # TODO: Why is this not called anymore?
         if self.passive:
             self.__passiveShutDown()
         self.lastClientExited.emit()
@@ -2059,7 +2060,7 @@
         self.debugging = False
         self.running = False
     
-    def passiveStartUp(self, fn, exc):
+    def passiveStartUp(self, fn, exc, debuggerId):
         """
         Public method to handle a passive debug connection.
         
@@ -2067,6 +2068,8 @@
         @type str
         @param exc flag to enable exception reporting of the IDE
         @type bool
+        @param debuggerId ID of the debugger backend
+        @type str
         """
         self.appendStdout.emit(self.tr("Passive debug connection received\n"))
         self.passiveClientExited = False

eric ide

mercurial