Home
last modified time | relevance | path

Searched refs:getcallargs (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Doc/library/
Dinspect.rst526 .. function:: getcallargs(func[, *args][, **kwds])
537 >>> from inspect import getcallargs
540 >>> getcallargs(f, 1, 2, 3)
542 >>> getcallargs(f, a=2, x=4)
544 >>> getcallargs(f)
/external/autotest/frontend/afe/
Drpc_utils.py1178 callargs = inspect.getcallargs(func, *args, **kwargs)
/external/python/cpython2/Lib/
Dinspect.py894 def getcallargs(func, *positional, **named): function
/external/python/cpython2/Doc/whatsnew/
D2.7.rst1311 * New function: the :mod:`inspect` module's :func:`~inspect.getcallargs`
1316 >>> from inspect import getcallargs
1319 >>> getcallargs(f, 1, 2, 3)
1321 >>> getcallargs(f, a=2, x=4)
1323 >>> getcallargs(f)
/external/python/cpython2/Misc/
DNEWS5050 - Issue #11256: Fix inspect.getcallargs on functions that take only keyword
6570 - Issue #3135: Add ``inspect.getcallargs()``, which binds arguments to a