diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-14 18:14:18 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-14 18:14:18 (GMT) |
commit | dee32bd256011d21ea0dbef0ac002ae4e1cacf62 (patch) | |
tree | 24c96854a0cd100669a0cd4128cac227a806d377 | |
parent | e0104ae1034eff71539e487caaab35365f08f181 (diff) | |
parent | 82796193f9d8a4f5f85f438bd8b9a5a0efbbaabe (diff) | |
download | cpython-dee32bd256011d21ea0dbef0ac002ae4e1cacf62.zip cpython-dee32bd256011d21ea0dbef0ac002ae4e1cacf62.tar.gz cpython-dee32bd256011d21ea0dbef0ac002ae4e1cacf62.tar.bz2 |
Issue 24191: Document BoundArguments.signature
-rw-r--r-- | Doc/library/inspect.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 471200f..444d2be 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -699,6 +699,10 @@ function. A dict of keyword arguments values. Dynamically computed from the :attr:`arguments` attribute. + .. attribute:: BoundArguments.signature + + A reference to the parent :class:`Signature` object. + The :attr:`args` and :attr:`kwargs` properties can be used to invoke functions:: |