From 5b3df5b60094b42daac701d1f60d4c655d786f72 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sat, 16 May 2015 23:29:31 +0300 Subject: [PATCH] Add versionadded directive for BoundArguments.apply_defaults(). --- Doc/library/inspect.rst | 2 ++ 1 file changed, 2 insertions(+) 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:: -- 2.50.1