diff -r 5d807e997391 -r c6011e501282 src/eric7/DebugClients/Python/DebugUtilities.py --- a/src/eric7/DebugClients/Python/DebugUtilities.py Sat Dec 16 17:52:02 2023 +0100 +++ b/src/eric7/DebugClients/Python/DebugUtilities.py Sun Dec 17 17:15:19 2023 +0100 @@ -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):