summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-13 15:23:54 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-13 15:23:54 (GMT)
commiteed1808dec59e299e3d81686a69f30af2ed3ef42 (patch)
treec40a5ae3a1b338da1d321a3e945510d982ccf93e /Doc
parent4e48bf929b9d43afcd6567d69a4b384959775ca9 (diff)
downloadcpython-eed1808dec59e299e3d81686a69f30af2ed3ef42.zip
cpython-eed1808dec59e299e3d81686a69f30af2ed3ef42.tar.gz
cpython-eed1808dec59e299e3d81686a69f30af2ed3ef42.tar.bz2
Minor update of docs for inspect module.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/inspect.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
index e5010c8..27ebf52 100644
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -563,7 +563,7 @@ function.
| | definition. |
+------------------------+----------------------------------------------+
- Print all keyword-only arguments without default values::
+ Example: print all keyword-only arguments without default values::
>>> def foo(a, b, *, c, d=10):
... pass