commit | eed1808dec59e299e3d81686a69f30af2ed3ef42 | [log] [tgz] |
---|---|---|
author | Andrew Svetlov <andrew.svetlov@gmail.com> | Mon Aug 13 18:23:54 2012 +0300 |
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | Mon Aug 13 18:23:54 2012 +0300 |
tree | c40a5ae3a1b338da1d321a3e945510d982ccf93e | |
parent | 4e48bf929b9d43afcd6567d69a4b384959775ca9 [diff] |
Minor update of docs for inspect module.
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 @@ | | 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