diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-08-13 15:23:54 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-08-13 15:23:54 (GMT) |
commit | eed1808dec59e299e3d81686a69f30af2ed3ef42 (patch) | |
tree | c40a5ae3a1b338da1d321a3e945510d982ccf93e /Doc/library/inspect.rst | |
parent | 4e48bf929b9d43afcd6567d69a4b384959775ca9 (diff) | |
download | cpython-eed1808dec59e299e3d81686a69f30af2ed3ef42.zip cpython-eed1808dec59e299e3d81686a69f30af2ed3ef42.tar.gz cpython-eed1808dec59e299e3d81686a69f30af2ed3ef42.tar.bz2 |
Minor update of docs for inspect module.
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r-- | Doc/library/inspect.rst | 2 |
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 |