diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-14 18:14:02 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-14 18:14:02 (GMT) |
commit | 82796193f9d8a4f5f85f438bd8b9a5a0efbbaabe (patch) | |
tree | 45eba0b1df7f2d03d7e54b8c978ba6bb0515172b /Doc/library/inspect.rst | |
parent | 2249d9f7d6527765d1f47c24cec4e58ee29e06ef (diff) | |
download | cpython-82796193f9d8a4f5f85f438bd8b9a5a0efbbaabe.zip cpython-82796193f9d8a4f5f85f438bd8b9a5a0efbbaabe.tar.gz cpython-82796193f9d8a4f5f85f438bd8b9a5a0efbbaabe.tar.bz2 |
Issue 24191: Document BoundArguments.signature
Diffstat (limited to 'Doc/library/inspect.rst')
-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 c540b11..a6b5e80 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -660,6 +660,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:: |