diff options
author | Fred Drake <fdrake@acm.org> | 1998-11-25 17:40:00 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-11-25 17:40:00 (GMT) |
commit | 2b3730e28406ff75feec6d3098fc0900c6fd1b6a (patch) | |
tree | a3b877ce32815567d1df098db24a3a7137f8edd0 /Doc | |
parent | 1cbd196f9645622832890c3d70410c4c06edc416 (diff) | |
download | cpython-2b3730e28406ff75feec6d3098fc0900c6fd1b6a.zip cpython-2b3730e28406ff75feec6d3098fc0900c6fd1b6a.tar.gz cpython-2b3730e28406ff75feec6d3098fc0900c6fd1b6a.tar.bz2 |
Minor adjustments to a few index entries.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ref/ref6.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/ref/ref6.tex b/Doc/ref/ref6.tex index 3a2e260..a629494 100644 --- a/Doc/ref/ref6.tex +++ b/Doc/ref/ref6.tex @@ -327,7 +327,7 @@ it does not have a \method{write()} method, a \exception{RuntimeError} exception is raised. \indexii{standard}{output} \refbimodindex{sys} -\ttindex{stdout} +\withsubitem{(in module sys)}{\ttindex{stdout}} \exindex{RuntimeError} \section{The \keyword{return} statement\label{return}} @@ -468,7 +468,7 @@ of the module searching and loading process are implementation and platform specific. It generally involves searching for a ``built-in'' module with the given name and then searching a list of locations given as \code{sys.path}. -\ttindex{modules} +\withsubitem{(in module sys)}{\ttindex{modules}} \ttindex{sys.modules} \indexii{module}{name} \indexii{built-in}{module} @@ -511,7 +511,7 @@ Names bound by \keyword{import} statements may not occur in The \keyword{from} form with \code{*} may only occur in a module scope. \kwindex{from} -\ttindex{from ... import *} +\stindex{from} (The current implementation does not enforce the latter two restrictions, but programs should not abuse this freedom, as future |