summaryrefslogtreecommitdiffstats
path: root/Doc/libfuncs.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1997-12-15 22:28:38 (GMT)
committerFred Drake <fdrake@acm.org>1997-12-15 22:28:38 (GMT)
commite14388c4b8e9b20e83b672db8592a57177044db2 (patch)
tree402e1e6dec95a4e7b851eea1f4cc49a979568d10 /Doc/libfuncs.tex
parent19d58273c544329fb3376ece03f9249c8a05d2a8 (diff)
downloadcpython-e14388c4b8e9b20e83b672db8592a57177044db2.zip
cpython-e14388c4b8e9b20e83b672db8592a57177044db2.tar.gz
cpython-e14388c4b8e9b20e83b672db8592a57177044db2.tar.bz2
Fixed index references to modules.
Diffstat (limited to 'Doc/libfuncs.tex')
-rw-r--r--Doc/libfuncs.tex12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/libfuncs.tex b/Doc/libfuncs.tex
index 0182dcb..55bf36a 100644
--- a/Doc/libfuncs.tex
+++ b/Doc/libfuncs.tex
@@ -14,12 +14,12 @@ semantics of the \code{import} statement. For examples of why and
how you would do this, see the standard library modules \code{ni},
\code{ihooks} and \code{rexec}. See also the built-in module
\code{imp}, which defines some useful operations out of which you can
-build your own \code{__import__} function.
+build your own \code{__import__()} function.
\stindex{import}
-\stmodindex{ni}
-\stmodindex{ihooks}
-\stmodindex{rexec}
-\bimodindex{imp}
+\refstmodindex{ni}
+\refstmodindex{ihooks}
+\refstmodindex{rexec}
+\refbimodindex{imp}
For example, the statement \code{import spam} results in the following
call:
@@ -599,7 +599,7 @@ returns \code{('a', 'b', 'c')} and \code{tuple([1, 2, 3])} returns
Return the type of an \var{object}. The return value is a type
object. The standard module \code{types} defines names for all
built-in types.
-\stmodindex{types}
+\refstmodindex{types}
\obindex{type}
For instance: