diff options
author | Fred Drake <fdrake@acm.org> | 2001-05-29 15:44:27 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-05-29 15:44:27 (GMT) |
commit | b9879e1020f05718e1431f6aad16b5d4f03aa16d (patch) | |
tree | 4e0e7210549bc657a762a0b11dc6037f7ba56019 /Doc/ref | |
parent | c80d4dd6950421b47cd973361d3823e1e29b9df4 (diff) | |
download | cpython-b9879e1020f05718e1431f6aad16b5d4f03aa16d.zip cpython-b9879e1020f05718e1431f6aad16b5d4f03aa16d.tar.gz cpython-b9879e1020f05718e1431f6aad16b5d4f03aa16d.tar.bz2 |
Fix typo reported in SF bug #427783.
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref4.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex index 636bc1d..754a5b5 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: |