--- 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 = {}