diff options
author | Raymond Hettinger <python@rcn.com> | 2002-12-07 09:39:15 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-12-07 09:39:15 (GMT) |
commit | f9229d98ae86aa9a68a34b6b3f4db0706be214f5 (patch) | |
tree | 51b4fc2786f090d5e5f0fb0069a2ebda4efded5a /Doc/ref | |
parent | c1ac194e94a3733b54723019e8495babbc57aa0a (diff) | |
download | cpython-f9229d98ae86aa9a68a34b6b3f4db0706be214f5.zip cpython-f9229d98ae86aa9a68a34b6b3f4db0706be214f5.tar.gz cpython-f9229d98ae86aa9a68a34b6b3f4db0706be214f5.tar.bz2 |
Add __all__ to Reference Manual index.
Closes SF 643227.
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref6.tex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/ref/ref6.tex b/Doc/ref/ref6.tex index b9a1c68..e6b3246 100644 --- a/Doc/ref/ref6.tex +++ b/Doc/ref/ref6.tex @@ -703,6 +703,7 @@ considered public and are required to exist. If \code{__all__} is not defined, the set of public names includes all names found in the module's namespace which do not begin with an underscore character (\character{_}). +\index{__all__} The \keyword{from} form with \samp{*} may only occur in a module scope. If the wild card form of import --- \samp{import *} --- is |