Home
last modified time | relevance | path

Searched refs:from_callable (Results 1 – 11 of 11) sorted by relevance

/external/pigweed/pw_rpc/py/pw_rpc/callback_client/
Dimpl.py95 …annotation = inspect.Signature.from_callable(self).return_annotation # type: ignore[arg-type] # p…
/external/python/cpython3/Lib/test/
Dtest_inspect.py2552 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/
Dinspect.py2527 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/
D3.5.0b1.rst724 Add 'follow_wrapped' argument to inspect.Signature.from_callable() and
D3.10.0b1.rst650 :func:`inspect.signature`, :func:`inspect.from_callable`, and
653 :func:`inspect.from_callable` can now un-stringize stringized annotations,
D3.10.0a4.rst665 and :meth:`inspect.Signature.from_callable`.
D3.5.0a1.rst4449 Add inspect.Signature.from_callable method.
D3.9.0a1.rst1631 Preserve subclassing in inspect.Signature.from_callable.
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1302 :meth:`Signature.from_callable() <inspect.Signature.from_callable>` makes
2323 :meth:`Signature.from_callable() <inspect.Signature.from_callable>`
D3.10.rst1209 :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/
Dinspect.rst693 … .. classmethod:: Signature.from_callable(obj, *, follow_wrapped=True, globalns=None, localns=None)
704 sig = MySignature.from_callable(min)