/aosp_15_r20/external/tensorflow/tensorflow/python/util/ |
H A D | tf_inspect_test.py | 640 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 D | deprecation.py | 534 named_args = tf_inspect.getcallargs(func, *args, **kwargs) 616 named_args = tf_inspect.getcallargs(func, *args, **kwargs)
|
H A D | tf_inspect.py | 269 def getcallargs(*func_and_positional, **named): function
|
/aosp_15_r20/external/python/cpython2/Doc/library/ |
D | inspect.rst | 526 .. 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 D | api.py | 609 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 D | directives.py | 65 call_args = tf_inspect.getcallargs(function, *args, **kwds)
|
/aosp_15_r20/external/tensorflow/tensorflow/python/keras/utils/ |
H A D | tf_inspect.py | 255 def getcallargs(*func_and_positional, **named): function
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | inspect.rst | 1048 .. 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 D | rpc_utils.py | 1192 callargs = inspect.getcallargs(func, *args, **kwargs)
|
/aosp_15_r20/external/python/cpython2/Lib/ |
D | inspect.py | 904 def getcallargs(func, *positional, **named): function
|
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7b1.rst | 259 Add ``inspect.getcallargs()``, which binds arguments to a function like a
|
D | 2.7.2rc1.rst | 602 Fix inspect.getcallargs on functions that take only keyword arguments.
|
/aosp_15_r20/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 1311 * 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/ |
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
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/ |
H A D | inspect.py | 1522 def getcallargs(func, /, *positional, **named): function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/ |
D | inspect.py | 1522 def getcallargs(func, /, *positional, **named): function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/ |
D | inspect.py | 1522 def getcallargs(func, /, *positional, **named): function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/ |
D | inspect.py | 1522 def getcallargs(func, /, *positional, **named): function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/ |
D | inspect.py | 1522 def getcallargs(func, /, *positional, **named): function
|
/aosp_15_r20/external/python/cpython3/Lib/ |
D | inspect.py | 1522 def getcallargs(func, /, *positional, **named): function
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_inspect.py | 1794 inspect.getcallargs(f5) 1801 inspect.getcallargs(f6)
|
/aosp_15_r20/external/python/cpython3/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
|
/aosp_15_r20/external/python/cpython3/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
|