summaryrefslogtreecommitdiffstats
path: root/Doc/library/inspect.rst
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-05-16 20:29:31 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-05-16 20:29:31 (GMT)
commit5b3df5b60094b42daac701d1f60d4c655d786f72 (patch)
tree248790244085c60377eed37828fb6d96f5f1776f /Doc/library/inspect.rst
parent9e7990ae21fd32b25631a23bcdb00c8a086bb0c6 (diff)
downloadcpython-5b3df5b60094b42daac701d1f60d4c655d786f72.zip
cpython-5b3df5b60094b42daac701d1f60d4c655d786f72.tar.gz
cpython-5b3df5b60094b42daac701d1f60d4c655d786f72.tar.bz2
Add versionadded directive for BoundArguments.apply_defaults().
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r--Doc/library/inspect.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
index 3ee177d..823b4bb 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::