bundles / numpy 2.4.3 / numpy / _utils / _inspect / getargvalues
function
numpy._utils._inspect:getargvalues
source: /numpy/_utils/_inspect.py :114
Signature
def getargvalues ( frame ) Summary
Get information about arguments passed into a particular frame.
Extended Summary
A tuple of four things is returned: (args, varargs, varkw, locals). 'args' is a list of the argument names (it may contain nested lists). 'varargs' and 'varkw' are the names of the * and ** arguments or None. 'locals' is the locals dictionary of the given frame.
Aliases
-
numpy._utils._inspect.getargvalues