Home
last modified time | relevance | path

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

/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.
/external/python/cpython3/Lib/test/
Dtest_inspect.py2238 sig_func = inspect.Signature.from_callable(func)
2240 sig_funclike = inspect.Signature.from_callable(funclike(func))
3034 foo_sig = MySignature.from_callable(foo)
3041 sig = MySignature.from_callable(_pickle.Pickler)
/external/python/cpython3/Lib/
Dinspect.py2830 def from_callable(cls, obj, *, follow_wrapped=True): member in Signature
3083 return Signature.from_callable(obj, follow_wrapped=follow_wrapped)
/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.rst649 .. classmethod:: Signature.from_callable(obj, \*, follow_wrapped=True)
659 sig = MySignature.from_callable(min)