inspect.getargvalues(frame)
Get information about arguments passed into a particular frame. A named tuple ArgInfo(args, varargs, keywords, locals)
is returned. args is a list of the argument names. varargs and keywords are the names of the *
and **
arguments or None
. locals is the locals dictionary of the given frame.
Deprecated since version 3.5: Use signature()
and Signature Object, which provide a better introspecting API for callables.
Please login to continue.