diff options
Diffstat (limited to 'Doc/ref/ref4.tex')
-rw-r--r-- | Doc/ref/ref4.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex index c4c4abc..0198117 100644 --- a/Doc/ref/ref4.tex +++ b/Doc/ref/ref4.tex @@ -72,9 +72,9 @@ When a global name is not found in the global name space, it is searched in the list of ``built-in'' names (which is actually the global name space of the module \verb@__builtin__@). When a name is not found at all, the \verb@NameError@ exception is raised.% -\footnote{If the code block contains \verb@exec@ statements or the -construct \verb@from ... import *@, the semantics of names not -explicitly mentioned in a \verb@global@ statement change subtly: name +\footnote{If the code block contains {\tt exec} statements or the +construct {\tt from \ldots import *}, the semantics of names not +explicitly mentioned in a {\tt global} statement change subtly: name lookup first searches the local name space, then the global one, then the built-in one.} |