[Python-3000-checkins] r55906 - python/branches/p3yk/Doc/lib/libfuncs.tex

georg.brandl python-3000-checkins at python.org
Mon Jun 11 19:04:48 CEST 2007


Author: georg.brandl
Date: Mon Jun 11 19:04:44 2007
New Revision: 55906

Modified:
   python/branches/p3yk/Doc/lib/libfuncs.tex
Log:
int(x, 0) does not "guess".


Modified: python/branches/p3yk/Doc/lib/libfuncs.tex
==============================================================================
--- python/branches/p3yk/Doc/lib/libfuncs.tex	(original)
+++ python/branches/p3yk/Doc/lib/libfuncs.tex	Mon Jun 11 19:04:44 2007
@@ -569,8 +569,7 @@
   representable as a Python integer, possibly embedded in whitespace.
   The \var{radix} parameter gives the base for the
   conversion and may be any integer in the range [2, 36], or zero.  If
-  \var{radix} is zero, the proper radix is guessed based on the
-  contents of string; the interpretation is the same as for integer
+  \var{radix} is zero, the interpretation is the same as for integer
   literals.  If \var{radix} is specified and \var{x} is not a string,
   \exception{TypeError} is raised.
   Otherwise, the argument may be a plain or


More information about the Python-3000-checkins mailing list