]> granicus.if.org Git - python/commitdiff
Minor update of docs for inspect module.
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Mon, 13 Aug 2012 15:23:54 +0000 (18:23 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Mon, 13 Aug 2012 15:23:54 +0000 (18:23 +0300)
Doc/library/inspect.rst

index e5010c81910fcfd68c59bae6964638ec5f7830bc..27ebf52f8ac98d21a443097220c28b397eb8928c 100644 (file)
@@ -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