From eed1808dec59e299e3d81686a69f30af2ed3ef42 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Mon, 13 Aug 2012 18:23:54 +0300 Subject: [PATCH] Minor update of docs for inspect module. --- Doc/library/inspect.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index e5010c81910..27ebf52f8ac 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