diff options
author | Georg Brandl <georg@python.org> | 2007-09-24 17:58:18 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-24 17:58:18 (GMT) |
commit | 2f2bd3efd5368f3a36697daae19cc62f39149501 (patch) | |
tree | f92a23c1b23cac5d228cd1371f7ab03e0f6230c2 | |
parent | cdceeb814d204f4369cd49465546b53264233381 (diff) | |
download | cpython-2f2bd3efd5368f3a36697daae19cc62f39149501.zip cpython-2f2bd3efd5368f3a36697daae19cc62f39149501.tar.gz cpython-2f2bd3efd5368f3a36697daae19cc62f39149501.tar.bz2 |
#1196: document default radix for int().
-rw-r--r-- | Doc/lib/libfuncs.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index f3c6d47..345074d 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -533,7 +533,7 @@ class C: 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, |