diff -r 5d807e997391 -r c6011e501282 src/eric7/DebugClients/Python/ThreadExtension.py --- 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 = {}