diff options
author | Fred Drake <fdrake@acm.org> | 2002-12-07 16:00:00 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-12-07 16:00:00 (GMT) |
commit | 27cae1f7c57f4959ed11a34f9eec28dde54ffb5a (patch) | |
tree | 193f8d2d693a09f554f943b109b8fc77ff32557a /Doc/ref | |
parent | 33ec3ba2178a1816637bd63522504a5c3d07ff80 (diff) | |
download | cpython-27cae1f7c57f4959ed11a34f9eec28dde54ffb5a.zip cpython-27cae1f7c57f4959ed11a34f9eec28dde54ffb5a.tar.gz cpython-27cae1f7c57f4959ed11a34f9eec28dde54ffb5a.tar.bz2 |
Revise the __all__ index entry a touch.
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref6.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref6.tex b/Doc/ref/ref6.tex index e6b3246..9c088e9 100644 --- a/Doc/ref/ref6.tex +++ b/Doc/ref/ref6.tex @@ -703,7 +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__} +\withsubitem{(optional module attribute)}{\ttindex{__all__}} The \keyword{from} form with \samp{*} may only occur in a module scope. If the wild card form of import --- \samp{import *} --- is |