bundles / numpy 2.4.4 / numpy / _utils / _inspect / getargspec
function
numpy._utils._inspect:getargspec
source: /numpy/_utils/_inspect.py :97
Signature
def getargspec ( func ) Summary
Get the names and default values of a function's arguments.
Extended Summary
A tuple of four things is returned: (args, varargs, varkw, defaults). '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. 'defaults' is an n-tuple of the default values of the last n arguments.
Aliases
-
numpy._core.overrides.getargspec