summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-13 18:23:54 +0300
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-13 18:23:54 +0300
commiteed1808dec59e299e3d81686a69f30af2ed3ef42 (patch)
treec40a5ae3a1b338da1d321a3e945510d982ccf93e
parent4e48bf929b9d43afcd6567d69a4b384959775ca9 (diff)
downloadcpython-git-eed1808dec59e299e3d81686a69f30af2ed3ef42.tar.gz
Minor update of docs for inspect module.
-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 e5010c8191..27ebf52f8a 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