From: Raymond Hettinger Date: Mon, 13 May 2002 23:49:13 +0000 (+0000) Subject: Closes SF bug 527139. Brings docs inline with random.py 1.29 X-Git-Tag: v2.3c1~5671 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=576474c5ae0a42278262e7da96ebfa74754032b3;p=python Closes SF bug 527139. Brings docs inline with random.py 1.29 which fixes the unnecessarily restricted method domain. --- diff --git a/Doc/lib/librandom.tex b/Doc/lib/librandom.tex index 47fea4f720..3a12ae618b 100644 --- a/Doc/lib/librandom.tex +++ b/Doc/lib/librandom.tex @@ -218,7 +218,7 @@ these equations can be found in any statistics text. \begin{funcdesc}{gammavariate}{alpha, beta} Gamma distribution. (\emph{Not} the gamma function!) Conditions on - the parameters are \code{\var{alpha} >= 0.5} and \code{\var{beta} > 0}. + the parameters are \code{\var{alpha} > 0} and \code{\var{beta} > 0}. \end{funcdesc} \begin{funcdesc}{gauss}{mu, sigma}