eric6/DebugClients/Python/MultiProcessDebugExtension.py

changeset 7887
c1588f5a83e9
parent 7877
72386134c80a
child 7923
91e843545d9a
--- a/eric6/DebugClients/Python/MultiProcessDebugExtension.py	Thu Dec 17 14:30:46 2020 +0100
+++ b/eric6/DebugClients/Python/MultiProcessDebugExtension.py	Thu Dec 17 14:40:06 2020 +0100
@@ -59,7 +59,7 @@
     @param originalName original name of the function to be patched
     @type str
     @return function replacing the original one
-    @type function
+    @rtype function
     """
     def newExecl(path, *args):
         """
@@ -86,7 +86,7 @@
     @param originalName original name of the function to be patched
     @type str
     @return function replacing the original one
-    @type function
+    @rtype function
     """
     def newExecv(path, args):
         """
@@ -113,7 +113,7 @@
     @param originalName original name of the function to be patched
     @type str
     @return function replacing the original one
-    @type function
+    @rtype function
     """
     def newExecve(path, args, env):
         """
@@ -140,7 +140,7 @@
     @param originalName original name of the function to be patched
     @type str
     @return function replacing the original one
-    @type function
+    @rtype function
     """
     def newSpawnl(mode, path, *args):
         """
@@ -164,7 +164,7 @@
     @param originalName original name of the function to be patched
     @type str
     @return function replacing the original one
-    @type function
+    @rtype function
     """
     def newSpawnv(mode, path, args):
         """
@@ -188,7 +188,7 @@
     @param originalName original name of the function to be patched
     @type str
     @return function replacing the original one
-    @type function
+    @rtype function
     """
     def newSpawnve(mode, path, args, env):
         """
@@ -214,7 +214,7 @@
     @param originalName original name of the function to be patched
     @type str
     @return function replacing the original one
-    @type function
+    @rtype function
     """
     def newPosixSpawn(path, argv, env, **kwargs):
         """
@@ -238,7 +238,7 @@
     @param originalName original name of the function to be patched
     @type str
     @return function replacing the original one
-    @type function
+    @rtype function
     """
     def newForkExec(args, *other_args):
         """
@@ -263,7 +263,7 @@
     @param originalName original name of the function to be patched
     @type str
     @return function replacing the original one
-    @type function
+    @rtype function
     """
     def newFork():
         """
@@ -333,7 +333,7 @@
     @param originalName original name of the function to be patched
     @type str
     @return function replacing the original one
-    @type function
+    @rtype function
     """
     def newCreateProcess(appName, cmdline, *args):
         """

eric ide

mercurial