src/eric7/DebugClients/Python/ThreadExtension.py

branch
eric7
changeset 10417
c6011e501282
parent 10293
6c5585c3e543
child 10439
21c28b0f9e41
--- a/src/eric7/DebugClients/Python/ThreadExtension.py	Sat Dec 16 17:52:02 2023 +0100
+++ b/src/eric7/DebugClients/Python/ThreadExtension.py	Sun Dec 17 17:15:19 2023 +0100
@@ -53,13 +53,18 @@
         If mainThread is True, then we are attaching to the already
         started mainthread of the app and the rest of the args are ignored.
 
-        @param target the start function of the target thread (i.e. the user
+        @param target start function of the target thread (i.e. the user
             code)
+        @type function
         @param args arguments to pass to target
+        @type list of Any
         @param kwargs keyword arguments to pass to target
-        @param mainThread True, if we are attaching to the already
-              started mainthread of the app
+        @type dict of Any
+        @param mainThread True, if we are attaching to the already started
+            mainthread of the app
+        @type bool
         @return identifier of the created thread
+        @rtype int
         """
         if kwargs is None:
             kwargs = {}

eric ide

mercurial