[Python-checkins] python/dist/src/Doc/lib librandom.tex,1.28,1.29

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Thu, 23 May 2002 12:44:51 -0700


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

Modified Files:
	librandom.tex 
Log Message:
Deprecated Random.cunifvariate clearing bug 506647.  Also, added docstrings.


Index: librandom.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/librandom.tex,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** librandom.tex	13 May 2002 23:49:13 -0000	1.28
--- librandom.tex	23 May 2002 19:44:49 -0000	1.29
***************
*** 207,211 ****
    between 0 and \emph{pi}.  Returned values range between
    \code{\var{mean} - \var{arc}/2} and \code{\var{mean} +
!   \var{arc}/2}.
  \end{funcdesc}
  
--- 207,214 ----
    between 0 and \emph{pi}.  Returned values range between
    \code{\var{mean} - \var{arc}/2} and \code{\var{mean} +
!   \var{arc}/2} and are normalized to between 0 and \emph{pi}.
! 
!   \deprecated{2.3}{Instead, use (mean + arc * (Random.random()
!   - 0.5)) % Math.pi}
  \end{funcdesc}