diff options
author | Fred Drake <fdrake@acm.org> | 2003-09-28 19:03:36 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-09-28 19:03:36 (GMT) |
commit | 984920bbad4b0909dd060ca40fe0a76f6b4f4116 (patch) | |
tree | b0f89e332579f457a22e929f6fb6caad75750e08 | |
parent | b36615d584e1a399a770286d8d0fdebbd7ce73cb (diff) | |
download | cpython-984920bbad4b0909dd060ca40fe0a76f6b4f4116.zip cpython-984920bbad4b0909dd060ca40fe0a76f6b4f4116.tar.gz cpython-984920bbad4b0909dd060ca40fe0a76f6b4f4116.tar.bz2 |
Make the embedded hyperlinks work.
-rw-r--r-- | Doc/tut/glossary.tex | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Doc/tut/glossary.tex b/Doc/tut/glossary.tex index b8b8309..4702d67 100644 --- a/Doc/tut/glossary.tex +++ b/Doc/tut/glossary.tex @@ -86,10 +86,10 @@ by executing: from __future__ import division \end{verbatim} -the expression \code{11/4} would evaluate to \code{2.75}. By -actually importing the \refmodule[future]{__future__} module and -evaluating its variables, you can see when a new feature was first -added to the language and when it will become the default: +the expression \code{11/4} would evaluate to \code{2.75}. By actually +importing the \ulink{\module{__future__}}{../lib/module-future.html} +module and evaluating its variables, you can see when a new feature +was first added to the language and when it will become the default: \begin{verbatim} >>> import __future__ @@ -256,8 +256,9 @@ distinguished by their namespaces. Namespaces also aid readability and maintainability by making it clear which modules implement a function. For instance, writing \function{random.seed()} or {}\function{itertools.izip()} makes it clear that those functions are -implemented by the \refmodule{random} and \refmodule{itertools} -modules respectively. +implemented by the \ulink{\module{random}}{../lib/module-random.html} +and \ulink{\module{itertools}}{../lib/module-itertools.html} modules +respectively. \index{nested scope} \item[nested scope] |