From: Fred Drake Date: Tue, 29 May 2001 15:45:01 +0000 (+0000) Subject: Fix typo reported in SF bug #427783. X-Git-Tag: v2.1.1c1~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7d92f4568442a2c3016ab993b951601791c03685;p=thirdparty%2FPython%2Fcpython.git Fix typo reported in SF bug #427783. --- diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex index 636bc1d3756c..754a5b59d091 100644 --- a/Doc/ref/ref4.tex +++ b/Doc/ref/ref4.tex @@ -80,7 +80,7 @@ searched in the built-in namespace (which is actually the global namespace of the module \module{__builtin__}\refbimodindex{__builtin__}). The built-in namespace associated with the execution of a code block is actually -found by looking up the name \code{__builtins__} is its global +found by looking up the name \code{__builtins__} in its global namespace; this should be a dictionary or a module (in the latter case its dictionary is used). Normally, the \code{__builtins__} namespace is the dictionary of the built-in module \module{__builtin__} (note: