diff options
author | Georg Brandl <georg@python.org> | 2013-04-14 09:47:46 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-04-14 09:47:46 (GMT) |
commit | d4c45a91b7327f46542cf1923bf7d7fff8502f74 (patch) | |
tree | c0a8847af7684e11e24a2b251b6f45621134fc4c /Doc/tutorial | |
parent | 10bb21e4f964ee35004efbf75ea9ae5c5873af28 (diff) | |
download | cpython-d4c45a91b7327f46542cf1923bf7d7fff8502f74.zip cpython-d4c45a91b7327f46542cf1923bf7d7fff8502f74.tar.gz cpython-d4c45a91b7327f46542cf1923bf7d7fff8502f74.tar.bz2 |
Clarify that the function *definition* creates the function and the binding in the module globals.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/modules.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index d1a72c0..f5d285e 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. |