From: Andrew Svetlov Date: Mon, 13 Aug 2012 15:23:54 +0000 (+0300) Subject: Minor update of docs for inspect module. X-Git-Tag: v3.3.0rc1~128 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eed1808dec59e299e3d81686a69f30af2ed3ef42;p=python Minor update of docs for inspect module. --- 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