From 82796193f9d8a4f5f85f438bd8b9a5a0efbbaabe Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Thu, 14 May 2015 14:14:02 -0400 Subject: [PATCH] Issue 24191: Document BoundArguments.signature --- Doc/library/inspect.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index c540b116457..a6b5e801294 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::