]> git.ipfire.org Git - thirdparty/Python/cpython.git/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 d1a72c082bf633705fb15c4d75a840acbe7a095b..f5d285ec312218df96064040e8960cc072c4d0d9 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.