]> granicus.if.org Git - python/commitdiff
Clarify that the function *definition* creates the function and the binding in the...
authorGeorg Brandl <georg@python.org>
Sun, 14 Apr 2013 09:47:46 +0000 (11:47 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 14 Apr 2013 09:47:46 +0000 (11:47 +0200)
Doc/tutorial/modules.rst

index c4d86ac31f6ccc8e84c8716f0417236e517d243b..78fe511c864ea6c77decfa0ea2f7d1b63674b13e 100644 (file)
@@ -550,6 +550,6 @@ modules found in a package.
 .. rubric:: Footnotes
 
 .. [#] In fact function definitions are also 'statements' that are 'executed'; the
-   execution of a module-level function enters the function name in the module's
-   global symbol table.
+   execution of a module-level function definition enters the function name in
+   the module's global symbol table.