diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
commit | cce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch) | |
tree | 8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/libwhrandom.tex | |
parent | c9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff) | |
download | cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2 |
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty
macros.
Diffstat (limited to 'Doc/libwhrandom.tex')
-rw-r--r-- | Doc/libwhrandom.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/libwhrandom.tex b/Doc/libwhrandom.tex index cac7de7..7803184 100644 --- a/Doc/libwhrandom.tex +++ b/Doc/libwhrandom.tex @@ -11,7 +11,7 @@ class that is also named \code{whrandom}. Instances of the Chooses a random element from the non-empty sequence \var{seq} and returns it. \end{funcdesc} -\begin{funcdesc}{randint}{a\, b} +\begin{funcdesc}{randint}{a, b} Returns a random integer \var{N} such that \code{\var{a}<=\var{N}<=\var{b}}. \end{funcdesc} @@ -19,7 +19,7 @@ Returns a random integer \var{N} such that \code{\var{a}<=\var{N}<=\var{b}}. Returns the next random floating point number in the range [0.0 ... 1.0). \end{funcdesc} -\begin{funcdesc}{seed}{x\, y\, z} +\begin{funcdesc}{seed}{x, y, z} Initializes the random number generator from the integers \var{x}, \var{y} @@ -29,7 +29,7 @@ When the module is first imported, the random number is initialized using values derived from the current time. \end{funcdesc} -\begin{funcdesc}{uniform}{a\, b} +\begin{funcdesc}{uniform}{a, b} Returns a random real number \var{N} such that \code{\var{a}<=\var{N}<\var{b}}. \end{funcdesc} |