[Python-checkins] CVS: python/dist/src/Doc/lib libmath.tex,1.23,1.24

Tim Peters python-dev@python.org
Fri, 15 Sep 2000 20:54:27 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv28799/python/dist/src/Doc/lib

Modified Files:
	libmath.tex 
Log Message:
Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough.
FRED, please check my monkey-see-monkey-do Tex fiddling!


Index: libmath.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libmath.tex,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** libmath.tex	2000/08/10 04:23:29	1.23
--- libmath.tex	2000/09/16 03:54:24	1.24
***************
*** 61,65 ****
  
  \begin{funcdesc}{fmod}{x, y}
! Return \code{\var{x} \%\ \var{y}}.
  \end{funcdesc}
  
--- 61,67 ----
  
  \begin{funcdesc}{fmod}{x, y}
! Return \code{fmod(\var{x}, \var{y})}, as defined by the platform C library.
! Note that the Python expression \code{\var{x} \%\ \var{y}} may not return
! the same result.
  \end{funcdesc}