Searched refs:from_callable (Results 1 – 11 of 11) sorted by relevance
/external/pigweed/pw_rpc/py/pw_rpc/callback_client/ |
D | impl.py | 95 …annotation = inspect.Signature.from_callable(self).return_annotation # type: ignore[arg-type] # p…
|
/external/python/cpython3/Lib/test/ |
D | test_inspect.py | 2552 sig_func = inspect.Signature.from_callable(func) 2554 sig_funclike = inspect.Signature.from_callable(funclike(func)) 3399 foo_sig = MySignature.from_callable(foo) 3406 foo_sig = MySignature.from_callable(foo) 3413 sig = MySignature.from_callable(_pickle.Pickler) 3437 for signature_func in (inspect.signature, inspect.Signature.from_callable): 3457 for signature_func in (inspect.signature, inspect.Signature.from_callable): 3577 for signature_func in (inspect.signature, inspect.Signature.from_callable):
|
/external/python/cpython3/Lib/ |
D | inspect.py | 2527 return sigcls.from_callable(object) 2992 def from_callable(cls, obj, *, member in Signature 3247 return Signature.from_callable(obj, follow_wrapped=follow_wrapped,
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0b1.rst | 724 Add 'follow_wrapped' argument to inspect.Signature.from_callable() and
|
D | 3.10.0b1.rst | 650 :func:`inspect.signature`, :func:`inspect.from_callable`, and 653 :func:`inspect.from_callable` can now un-stringize stringized annotations,
|
D | 3.10.0a4.rst | 665 and :meth:`inspect.Signature.from_callable`.
|
D | 3.5.0a1.rst | 4449 Add inspect.Signature.from_callable method.
|
D | 3.9.0a1.rst | 1631 Preserve subclassing in inspect.Signature.from_callable.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 1302 :meth:`Signature.from_callable() <inspect.Signature.from_callable>` makes 2323 :meth:`Signature.from_callable() <inspect.Signature.from_callable>`
|
D | 3.10.rst | 1209 :func:`inspect.Signature.from_callable`, and :func:`inspect.Signature.from_function` 1211 :func:`inspect.signature` and :func:`inspect.Signature.from_callable` can
|
/external/python/cpython3/Doc/library/ |
D | inspect.rst | 693 … .. classmethod:: Signature.from_callable(obj, *, follow_wrapped=True, globalns=None, localns=None) 704 sig = MySignature.from_callable(min)
|