Searched refs:getcallargs (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Doc/library/ |
D | inspect.rst | 1059 .. function:: getcallargs(func, /, *args, **kwds) 1070 >>> from inspect import getcallargs 1073 >>> getcallargs(f, 1, 2, 3) == {'a': 1, 'named': {}, 'b': 2, 'pos': (3,)} 1075 >>> getcallargs(f, a=2, x=4) == {'a': 2, 'named': {'x': 4}, 'b': 1, 'pos': ()} 1077 >>> getcallargs(f)
|
/third_party/python/Doc/whatsnew/ |
D | 2.7.rst | 1326 * New function: the :mod:`inspect` module's :func:`~inspect.getcallargs` 1331 >>> from inspect import getcallargs 1334 >>> getcallargs(f, 1, 2, 3) 1336 >>> getcallargs(f, a=2, x=4) 1338 >>> getcallargs(f)
|
D | 3.5.rst | 2330 :func:`~inspect.getcallargs`, and :func:`~inspect.formatargspec` functions are
|
/third_party/python/Lib/test/ |
D | test_inspect.py | 1763 inspect.getcallargs(f5) 1770 inspect.getcallargs(f6)
|
/third_party/python/Lib/ |
D | inspect.py | 1492 def getcallargs(func, /, *positional, **named): function
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 4467 Fix inspect.getcallargs() to raise correct TypeError for missing 4477 Fix inspect.getcallargs() to fail correctly if more than 3 arguments are
|
/third_party/python/Misc/ |
D | HISTORY | 2062 - Issue #20816: Fix inspect.getcallargs() to raise correct TypeError for 2065 - Issue #20817: Fix inspect.getcallargs() to fail correctly if more 2893 - Issue #20108: Avoid parameter name clash in inspect.getcallargs(). 9863 - Issue #11256: Fix inspect.getcallargs on functions that take only keyword
|