Home
last modified time | relevance | path

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

/third_party/python/Doc/library/
Dinspect.rst665 Returns :class:`BoundArguments` if ``*args`` and ``**kwargs`` match the
672 Returns :class:`BoundArguments`, or raises a :exc:`TypeError` if the
842 .. class:: BoundArguments
847 .. attribute:: BoundArguments.arguments
860 However, if needed, use :meth:`BoundArguments.apply_defaults` to add
867 .. attribute:: BoundArguments.args
872 .. attribute:: BoundArguments.kwargs
877 .. attribute:: BoundArguments.signature
881 .. method:: BoundArguments.apply_defaults()
/third_party/python/Lib/
Dinspect.py2753 class BoundArguments: class
2864 if not isinstance(other, BoundArguments):
2909 _bound_arguments_cls = BoundArguments
/third_party/python/Misc/NEWS.d/
D3.5.0b1.rst704 Implement informative __repr__ for inspect.BoundArguments. Contributed by
D3.9.0a4.rst602 `inspect.Signature.parameters` and `inspect.BoundArguments.arguments` are
/third_party/python/Doc/whatsnew/
D3.5.rst1290 :meth:`BoundArguments.apply_defaults() <inspect.BoundArguments.apply_defaults>`
D3.9.rst528 :attr:`inspect.BoundArguments.arguments` is changed from ``OrderedDict`` to regular
D3.3.rst633 and :class:`inspect.BoundArguments` hold information about the call signatures,