From: Berker Peksag Date: Sat, 16 May 2015 20:29:31 +0000 (+0300) Subject: Add versionadded directive for BoundArguments.apply_defaults(). X-Git-Tag: v3.5.0b1~101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b3df5b60094b42daac701d1f60d4c655d786f72;p=python Add versionadded directive for BoundArguments.apply_defaults(). --- diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 3ee177d9d1..823b4bb50a 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -702,6 +702,8 @@ function. >>> ba.arguments OrderedDict([('a', 'spam'), ('b', 'ham'), ('args', ())]) + .. versionadded:: 3.5 + The :attr:`args` and :attr:`kwargs` properties can be used to invoke functions::