eric6/Debugger/DebuggerInterfaceNone.py

branch
multi_processing
changeset 7882
617cc27f11af
parent 7874
8dcb77600690
child 7897
9acc015ea443
diff -r 6c09c023cda5 -r 617cc27f11af eric6/Debugger/DebuggerInterfaceNone.py
--- a/eric6/Debugger/DebuggerInterfaceNone.py	Thu Dec 17 13:54:47 2020 +0100
+++ b/eric6/Debugger/DebuggerInterfaceNone.py	Thu Dec 17 14:20:51 2020 +0100
@@ -23,8 +23,10 @@
         """
         Constructor
         
-        @param debugServer reference to the debug server (DebugServer)
-        @param passive flag indicating passive connection mode (boolean)
+        @param debugServer reference to the debug server
+        @type DebugServer
+        @param passive flag indicating passive connection mode
+        @type bool
         """
         super(DebuggerInterfaceNone, self).__init__()
         
@@ -84,7 +86,8 @@
         """
         Public method to retrieve the debug clients capabilities.
         
-        @return debug client capabilities (integer)
+        @return debug client capabilities
+        @rtype int
         """
         return self.clientCapabilities
         
@@ -92,8 +95,10 @@
         """
         Public slot to handle a new connection.
         
-        @param sock reference to the socket object (QTcpSocket)
-        @return flag indicating success (boolean)
+        @param sock reference to the socket object
+        @type QTcpSocket
+        @return flag indicating success
+        @rtype bool
         """
         return False
     
@@ -110,8 +115,8 @@
         """
         Public method to cleanly shut down.
         
-        It closes our socket and shuts down
-        the debug client. (Needed on Win OS)
+        It closes our socket and shuts down the debug client.
+        (Needed on Win OS)
         """
         self.qsock = None
         self.queue = []
@@ -120,7 +125,8 @@
         """
         Public method to test, if a debug client has connected.
         
-        @return flag indicating the connection status (boolean)
+        @return flag indicating the connection status
+        @rtype bool
         """
         return self.qsock is not None
         
@@ -128,7 +134,8 @@
         """
         Public method to set the environment for a program to debug, run, ...
         
-        @param env environment settings (dictionary)
+        @param env environment settings
+        @type dict
         """
         return
         

eric ide

mercurial