summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-12-10 17:23:32 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-12-10 17:23:32 (GMT)
commit62770af62effdce1eab3cc7a92052b41e2c7a39f (patch)
treebfb697dd34ac487b77c117f5088f156170de9f1d /Doc
parente0c80c33af2f5a3f6112f9d4dd24b636759f5d85 (diff)
downloadcpython-62770af62effdce1eab3cc7a92052b41e2c7a39f.zip
cpython-62770af62effdce1eab3cc7a92052b41e2c7a39f.tar.gz
cpython-62770af62effdce1eab3cc7a92052b41e2c7a39f.tar.bz2
SF bug #1081370: Bad reference in whrandom docs
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libwhrandom.tex5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/lib/libwhrandom.tex b/Doc/lib/libwhrandom.tex
index c5df0ef..cd90824 100644
--- a/Doc/lib/libwhrandom.tex
+++ b/Doc/lib/libwhrandom.tex
@@ -14,7 +14,8 @@ no longer used. Please do not use this module directly; use
This module implements a Wichmann-Hill pseudo-random number generator
class that is also named \class{whrandom}. Instances of the
\class{whrandom} class conform to the Random Number Generator
-interface described in section \ref{rng-objects}. They also offer the
+interface described in the docs for the \refmodule{random} module.
+They also offer the
following method, specific to the Wichmann-Hill algorithm:
\begin{methoddesc}[whrandom]{seed}{\optional{x, y, z}}
@@ -29,6 +30,8 @@ following method, specific to the Wichmann-Hill algorithm:
series produced by the generator.
\end{methoddesc}
+Other supported methods include:
+
\begin{funcdesc}{choice}{seq}
Chooses a random element from the non-empty sequence \var{seq} and returns it.
\end{funcdesc}