summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-05-14 18:14:18 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-05-14 18:14:18 (GMT)
commitdee32bd256011d21ea0dbef0ac002ae4e1cacf62 (patch)
tree24c96854a0cd100669a0cd4128cac227a806d377 /Doc/library
parente0104ae1034eff71539e487caaab35365f08f181 (diff)
parent82796193f9d8a4f5f85f438bd8b9a5a0efbbaabe (diff)
downloadcpython-dee32bd256011d21ea0dbef0ac002ae4e1cacf62.zip
cpython-dee32bd256011d21ea0dbef0ac002ae4e1cacf62.tar.gz
cpython-dee32bd256011d21ea0dbef0ac002ae4e1cacf62.tar.bz2
Issue 24191: Document BoundArguments.signature
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/inspect.rst4
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::