A wrapper which allows factories to programatically create functions with precise input arguments, instead of using the argument catch-all:
>>> def f( *args, **kwargs ):
... pass
The inputs args, varargs, varkw, and defaults match the outputs of inspect.getargspec
Parameters: |
|
---|