From: Georg Brandl Date: Sun, 14 Apr 2013 09:47:46 +0000 (+0200) Subject: Clarify that the function *definition* creates the function and the binding in the... X-Git-Tag: v2.7.5~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4c45a91b7327f46542cf1923bf7d7fff8502f74;p=thirdparty%2FPython%2Fcpython.git Clarify that the function *definition* creates the function and the binding in the module globals. --- diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index d1a72c082bf6..f5d285ec3122 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -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.