diff options
author | Guido van Rossum <guido@python.org> | 1995-03-21 14:41:57 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-21 14:41:57 (GMT) |
commit | aaec403a75afdf3125f7ffa343fa004b5ec7fde2 (patch) | |
tree | 110167652a805907b2b8823470b122668484cb65 /Doc/ref/ref4.tex | |
parent | 3aca2a1f1cb1b2d9845d18c2367c5fc891031974 (diff) | |
download | cpython-aaec403a75afdf3125f7ffa343fa004b5ec7fde2.zip cpython-aaec403a75afdf3125f7ffa343fa004b5ec7fde2.tar.gz cpython-aaec403a75afdf3125f7ffa343fa004b5ec7fde2.tar.bz2 |
added index entries for __*__ identifiers
Diffstat (limited to 'Doc/ref/ref4.tex')
-rw-r--r-- | Doc/ref/ref4.tex | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex index 151b0ae..e4f3c2c 100644 --- a/Doc/ref/ref4.tex +++ b/Doc/ref/ref4.tex @@ -77,6 +77,11 @@ 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.} +\bimodindex{__builtin__} +\stindex{from} +\stindex{exec} +\stindex{global} +\ttindex{NameError} The following table lists the meaning of the local and global name space for various types of code blocks. The name space for a @@ -107,6 +112,7 @@ Expression read by \verb@input@ \hline \end{tabular} \end{center} +\bimodindex{__main__} Notes: |