[Python-checkins] python/dist/src/Doc/lib libfuncs.tex,1.158,1.159

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Tue Dec 23 11:53:37 EST 2003


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

Modified Files:
	libfuncs.tex 
Log Message:
[Bug #857821] Remove mention of deprecated string.{atol,atof} functions.  (Patch from Gerrit Holl)

Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.158
retrieving revision 1.159
diff -C2 -d -r1.158 -r1.159
*** libfuncs.tex	17 Dec 2003 20:43:32 -0000	1.158
--- libfuncs.tex	23 Dec 2003 16:53:34 -0000	1.159
***************
*** 428,433 ****
    Convert a string or a number to floating point.  If the argument is a
    string, it must contain a possibly signed decimal or floating point
!   number, possibly embedded in whitespace; this behaves identical to
!   \code{string.atof(\var{x})}.  Otherwise, the argument may be a plain
    or long integer or a floating point number, and a floating point
    number with the same value (within Python's floating point
--- 428,432 ----
    Convert a string or a number to floating point.  If the argument is a
    string, it must contain a possibly signed decimal or floating point
!   number, possibly embedded in whitespace. Otherwise, the argument may be a plain
    or long integer or a floating point number, and a floating point
    number with the same value (within Python's floating point
***************
*** 613,618 ****
    Convert a string or number to a long integer.  If the argument is a
    string, it must contain a possibly signed number of
!   arbitrary size, possibly embedded in whitespace;
!   this behaves identical to \code{string.atol(\var{x})}.  The
    \var{radix} argument is interpreted in the same way as for
    \function{int()}, and may only be given when \var{x} is a string.
--- 612,616 ----
    Convert a string or number to a long integer.  If the argument is a
    string, it must contain a possibly signed number of
!   arbitrary size, possibly embedded in whitespace. The
    \var{radix} argument is interpreted in the same way as for
    \function{int()}, and may only be given when \var{x} is a string.





More information about the Python-checkins mailing list