Home
last modified time | relevance | path

Searched refs:BoundArguments (Results 1 – 7 of 7) sorted by relevance

/external/python/funcsigs/docs/
Dindex.rst115 Returns :class:`BoundArguments` if ``*args`` and ``**kwargs`` match the
122 Returns :class:`BoundArguments`, or raises a :exc:`TypeError` if the
240 .. class:: BoundArguments
245 .. attribute:: BoundArguments.arguments
280 .. attribute:: BoundArguments.args
285 .. attribute:: BoundArguments.kwargs
/external/python/funcsigs/funcsigs/
D__init__.py347 class BoundArguments(object): class
436 return (issubclass(other.__class__, BoundArguments) and
470 _bound_arguments_cls = BoundArguments
/external/python/cpython3/Doc/library/
Dinspect.rst622 Returns :class:`BoundArguments` if ``*args`` and ``**kwargs`` match the
629 Returns :class:`BoundArguments`, or raises a :exc:`TypeError` if the
780 .. class:: BoundArguments
785 .. attribute:: BoundArguments.arguments
799 However, if needed, use :meth:`BoundArguments.apply_defaults` to add
802 .. attribute:: BoundArguments.args
807 .. attribute:: BoundArguments.kwargs
812 .. attribute:: BoundArguments.signature
816 .. method:: BoundArguments.apply_defaults()
/external/python/cpython3/Lib/
Dinspect.py2590 class BoundArguments: class
2701 if not isinstance(other, BoundArguments):
2746 _bound_arguments_cls = BoundArguments
/external/python/cpython3/Misc/NEWS.d/
D3.5.0b1.rst704 Implement informative __repr__ for inspect.BoundArguments. Contributed by
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1290 :meth:`BoundArguments.apply_defaults() <inspect.BoundArguments.apply_defaults>`
D3.3.rst633 and :class:`inspect.BoundArguments` hold information about the call signatures,