[Python-checkins] python/dist/src/Doc/lib libmath.tex,1.26,1.27

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sat, 14 Dec 2002 11:51:36 -0800


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

Modified Files:
	libmath.tex 
Log Message:
Apply SF patch 652930:  Add optional base argument to math.log(x[, base]).



Index: libmath.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libmath.tex,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** libmath.tex	13 May 2002 03:52:47 -0000	1.26
--- libmath.tex	14 Dec 2002 19:51:34 -0000	1.27
***************
*** 87,92 ****
  \end{funcdesc}
  
! \begin{funcdesc}{log}{x}
! Return the natural logarithm of \var{x}.
  \end{funcdesc}
  
--- 87,94 ----
  \end{funcdesc}
  
! \begin{funcdesc}{log}{x\optional{, base}}
! Returns the logarithm of \var{x} to the given base.
! If the base is not specified, returns the natural logarithm of \var{x}.
! \versionchanged[\var{base} argument added]{2.3}
  \end{funcdesc}