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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eed1808dec59e299e3d81686a69f30af2ed3ef42;p=thirdparty%2FPython%2Fcpython.git Minor update of docs for inspect module. --- diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index e5010c81910f..27ebf52f8ac9 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