[Python-checkins] python/dist/src/Doc/lib librandom.tex,1.25.18.3,1.25.18.4

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sat, 05 Oct 2002 08:00:12 -0700


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

Modified Files:
      Tag: release22-maint
	librandom.tex 
Log Message:
Backport 1.30 and 1.29:

Markup adjustments; fix the names of modules referenced in an expression.

Deprecated Random.cunifvariate clearing bug 506647.  



Index: librandom.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/librandom.tex,v
retrieving revision 1.25.18.3
retrieving revision 1.25.18.4
diff -C2 -d -r1.25.18.3 -r1.25.18.4
*** librandom.tex	13 May 2002 23:47:02 -0000	1.25.18.3
--- librandom.tex	5 Oct 2002 15:00:09 -0000	1.25.18.4
***************
*** 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 \code{(\var{mean} + \var{arc} *
!                    (random.random() - 0.5)) \% math.pi}.}
  \end{funcdesc}