summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2018-06-08 16:07:52 (GMT)
committerYury Selivanov <yury@magic.io>2018-06-08 16:07:52 (GMT)
commit4f54867e29af93779922ff23df542f2d5df4c4ee (patch)
tree36bf6ac0d3bffde15f4fab3a50a8a2849be5e3e0 /Doc
parent9e6685ea7b749ee34466e71b22d99e5112d71a95 (diff)
downloadcpython-4f54867e29af93779922ff23df542f2d5df4c4ee.zip
cpython-4f54867e29af93779922ff23df542f2d5df4c4ee.tar.gz
cpython-4f54867e29af93779922ff23df542f2d5df4c4ee.tar.bz2
bpo-33197: Add versionadded tag to the documentation of ParameterKind (GH-7536)
Diffstat (limited to 'Doc')
-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 37736ef..e33876b 100644
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -756,6 +756,8 @@ function.
Describes a enum value of Parameter.kind.
+ .. versionadded:: 3.8
+
Example: print all descriptions of arguments::
>>> def foo(a, b, *, c, d=10):