Home
last modified time | relevance | path

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

/aosp_15_r20/external/tensorflow/tensorflow/python/util/
H A Dtf_inspect_test.py640 self.assertEqual({}, tf_inspect.getcallargs(empty))
649 tf_inspect.getcallargs(func, 0, **kwargs), {
657 tf_inspect.getcallargs(func, 0, **kwargs), {
669 self.assertEqual({'a': 5}, tf_inspect.getcallargs(func, 5))
676 self.assertEqual({'a': 10, 'b': 20}, tf_inspect.getcallargs(func, 10, 20))
683 self.assertEqual({'a': 5}, tf_inspect.getcallargs(func, a=5))
690 self.assertEqual({'a': 6, 'b': 7}, tf_inspect.getcallargs(func, a=6, b=7))
697 self.assertEqual({'a': 13}, tf_inspect.getcallargs(func))
704 self.assertEqual({'a': 1}, tf_inspect.getcallargs(func, 1))
711 self.assertEqual({'a': 5, 'b': 2}, tf_inspect.getcallargs(func, 5))
[all …]
H A Ddeprecation.py534 named_args = tf_inspect.getcallargs(func, *args, **kwargs)
616 named_args = tf_inspect.getcallargs(func, *args, **kwargs)
H A Dtf_inspect.py269 def getcallargs(*func_and_positional, **named): function
/aosp_15_r20/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)
/aosp_15_r20/external/tensorflow/tensorflow/python/autograph/impl/
H A Dapi.py609 callargs = tf_inspect.getcallargs(f, *args, **kwargs)
611 callargs = tf_inspect.getcallargs(f, *args)
/aosp_15_r20/external/tensorflow/tensorflow/python/autograph/converters/
H A Ddirectives.py65 call_args = tf_inspect.getcallargs(function, *args, **kwds)
/aosp_15_r20/external/tensorflow/tensorflow/python/keras/utils/
H A Dtf_inspect.py255 def getcallargs(*func_and_positional, **named): function
/aosp_15_r20/external/python/cpython3/Doc/library/
Dinspect.rst1048 .. function:: getcallargs(func, /, *args, **kwds)
1059 >>> from inspect import getcallargs
1062 >>> getcallargs(f, 1, 2, 3) == {'a': 1, 'named': {}, 'b': 2, 'pos': (3,)}
1064 >>> getcallargs(f, a=2, x=4) == {'a': 2, 'named': {'x': 4}, 'b': 1, 'pos': ()}
1066 >>> getcallargs(f)
/aosp_15_r20/external/autotest/frontend/afe/
H A Drpc_utils.py1192 callargs = inspect.getcallargs(func, *args, **kwargs)
/aosp_15_r20/external/python/cpython2/Lib/
Dinspect.py904 def getcallargs(func, *positional, **named): function
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/
D2.7b1.rst259 Add ``inspect.getcallargs()``, which binds arguments to a function like a
D2.7.2rc1.rst602 Fix inspect.getcallargs on functions that take only keyword arguments.
/aosp_15_r20/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)
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D2.7.rst1326 * 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)
D3.5.rst2330 :func:`~inspect.getcallargs`, and :func:`~inspect.formatargspec` functions are
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/
H A Dinspect.py1522 def getcallargs(func, /, *positional, **named): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/
Dinspect.py1522 def getcallargs(func, /, *positional, **named): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/
Dinspect.py1522 def getcallargs(func, /, *positional, **named): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/
Dinspect.py1522 def getcallargs(func, /, *positional, **named): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dinspect.py1522 def getcallargs(func, /, *positional, **named): function
/aosp_15_r20/external/python/cpython3/Lib/
Dinspect.py1522 def getcallargs(func, /, *positional, **named): function
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_inspect.py1794 inspect.getcallargs(f5)
1801 inspect.getcallargs(f6)
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst4467 Fix inspect.getcallargs() to raise correct TypeError for missing
4477 Fix inspect.getcallargs() to fail correctly if more than 3 arguments are
/aosp_15_r20/external/python/cpython3/Misc/
DHISTORY2062 - 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