Home
last modified time | relevance | path

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

/external/pigweed/pw_rpc/py/pw_rpc/
Dcallback_client.py142 annotation = inspect.Signature.from_callable(self).return_annotation
/external/python/cpython3/Lib/
Dinspect.py2408 return sigcls.from_callable(object)
2877 def from_callable(cls, obj, *, follow_wrapped=True): member in Signature
3130 return Signature.from_callable(obj, follow_wrapped=follow_wrapped)
/external/python/cpython3/Lib/test/
Dtest_inspect.py2427 sig_func = inspect.Signature.from_callable(func)
2429 sig_funclike = inspect.Signature.from_callable(funclike(func))
3222 foo_sig = MySignature.from_callable(foo)
3229 foo_sig = MySignature.from_callable(foo)
3236 sig = MySignature.from_callable(_pickle.Pickler)
/external/python/cpython3/Misc/NEWS.d/
D3.5.0b1.rst724 Add 'follow_wrapped' argument to inspect.Signature.from_callable() and
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>`
/external/python/cpython3/Doc/library/
Dinspect.rst671 .. classmethod:: Signature.from_callable(obj, \*, follow_wrapped=True)
681 sig = MySignature.from_callable(min)