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

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Thu, 23 May 2002 14:07:22 -0700


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

Modified Files:
	librandom.tex 
Log Message:
Markup adjustments; fix the names of modules referenced in an expression.

Index: librandom.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/librandom.tex,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** librandom.tex	23 May 2002 19:44:49 -0000	1.29
--- librandom.tex	23 May 2002 21:07:19 -0000	1.30
***************
*** 209,214 ****
    \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}
  
--- 209,214 ----
    \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}