[Python-checkins] r58244 - python/branches/release25-maint/Doc/lib/libfuncs.tex

georg.brandl python-checkins at python.org
Mon Sep 24 19:58:18 CEST 2007


Author: georg.brandl
Date: Mon Sep 24 19:58:18 2007
New Revision: 58244

Modified:
   python/branches/release25-maint/Doc/lib/libfuncs.tex
Log:
#1196: document default radix for int().


Modified: python/branches/release25-maint/Doc/lib/libfuncs.tex
==============================================================================
--- python/branches/release25-maint/Doc/lib/libfuncs.tex	(original)
+++ python/branches/release25-maint/Doc/lib/libfuncs.tex	Mon Sep 24 19:58:18 2007
@@ -533,7 +533,7 @@
   string, it must contain a possibly signed decimal number
   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
+  conversion (which is 10 by default) 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
   literals.  If \var{radix} is specified and \var{x} is not a string,


More information about the Python-checkins mailing list