src/eric7/DebugClients/Python/ThreadExtension.py

branch
eric7-maintenance
changeset 10460
3b34efa2857c
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
--- a/src/eric7/DebugClients/Python/ThreadExtension.py	Sun Dec 03 14:54:00 2023 +0100
+++ b/src/eric7/DebugClients/Python/ThreadExtension.py	Mon Jan 01 11:10:45 2024 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 
-# Copyright (c) 2014 - 2023 Detlev Offenbach <detlev@die-offenbachs.de>
+# Copyright (c) 2014 - 2024 Detlev Offenbach <detlev@die-offenbachs.de>
 #
 
 """
@@ -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