changeset: 78543:843e0da7e91f user: Andrew Svetlov date: Mon Aug 13 18:23:54 2012 +0300 files: Doc/library/inspect.rst description: Minor update of docs for inspect module. diff -r 814462492fbd -r 843e0da7e91f Doc/library/inspect.rst --- a/Doc/library/inspect.rst Mon Aug 13 17:10:28 2012 +0300 +++ b/Doc/library/inspect.rst Mon Aug 13 18:23:54 2012 +0300 @@ -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