Commit 2f2bd3ef authored by Georg Brandl's avatar Georg Brandl

#1196: document default radix for int().

parent cdceeb81
......@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment