--- a/src/eric7/DebugClients/Python/DebugUtilities.py Sun Dec 03 14:54:00 2023 +0100 +++ b/src/eric7/DebugClients/Python/DebugUtilities.py Mon Jan 01 11:10:45 2024 +0100 @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2015 - 2023 Detlev Offenbach <detlev@die-offenbachs.de> +# Copyright (c) 2015 - 2024 Detlev Offenbach <detlev@die-offenbachs.de> # """ @@ -47,6 +47,7 @@ @return tuple of four things, where 'args' is a list of the argument names, 'varargs' and 'varkw' are the names of the * and ** arguments or None and 'locals' is the locals dictionary of the given frame. + @rtype ArgInfo @exception TypeError raised if the input parameter is not a frame object """ if not isframe(frame): @@ -66,6 +67,7 @@ @return tuple of four things, where 'args' and 'kwonlyargs' are lists of argument names, and 'varargs' and 'varkw' are the names of the * and ** arguments or None. + @rtype tuple of (list of str, list of str, list of str, list of str) @exception TypeError raised if the input parameter is not a code object """ if not iscode(co):