From 5e2954e083987a78ee2d0de81b3d1a37cc445719 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 14 Apr 2013 11:47:46 +0200 Subject: [PATCH] Clarify that the function *definition* creates the function and the binding in the module globals. --- Doc/tutorial/modules.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index c4d86ac31f6..78fe511c864 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.