[Python-checkins] python/dist/src/Doc/lib librandom.tex,1.25.18.1,1.25.18.2

rhettinger@sourceforge.net rhettinger@sourceforge.net
Mon, 13 May 2002 15:39:31 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv26121

Modified Files:
      Tag: release22-maint
	librandom.tex 
Log Message:
Correct gammavariate's method name and domain.  
Partial solution to SF bug 527139.


Index: librandom.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/librandom.tex,v
retrieving revision 1.25.18.1
retrieving revision 1.25.18.2
diff -C2 -d -r1.25.18.1 -r1.25.18.2
*** librandom.tex	18 Apr 2002 04:59:44 -0000	1.25.18.1
--- librandom.tex	13 May 2002 22:39:28 -0000	1.25.18.2
***************
*** 217,223 ****
  \end{funcdesc}
  
! \begin{funcdesc}{gamma}{alpha, beta}
    Gamma distribution.  (\emph{Not} the gamma function!)  Conditions on
!   the parameters are \code{\var{alpha} > -1} and \code{\var{beta} > 0}.
  \end{funcdesc}
  
--- 217,223 ----
  \end{funcdesc}
  
! \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}.
  \end{funcdesc}