Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
881c4878
Commit
881c4878
authored
Sep 14, 2008
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clarify that radix for int is not 'guessed'
parent
5f671dfa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
Doc/library/functions.rst
Doc/library/functions.rst
+8
-8
No files found.
Doc/library/functions.rst
View file @
881c4878
...
...
@@ -571,14 +571,14 @@ available. They are listed here in alphabetical order.
it must contain a possibly signed decimal number representable as a Python
integer, possibly embedded in whitespace. The *radix* parameter gives the
base for the conversion (which is 10 by default) and may be any integer in
the range [2, 36], or zero. If *radix* is zero, the proper radix is
guessed
based on the contents of string; the interpretation is the same as for
integer literals. If *radix* is specified and *x* is not a string,
:exc:`TypeError` is raised. Otherwise, the argument may be a plain or long
integer or a floating point number. Conversion of floating point numbers to
integers truncates (towards zero). If the argument is outside the integer
range a long object will be returned instead. If no arguments are given,
returns ``0``.
the range [2, 36], or zero. If *radix* is zero, the proper radix is
determined based on the contents of string; the interpretation is the same as
for integer literals. (See :ref:`numbers`.) If *radix* is specified and *x*
is not a string, :exc:`TypeError` is raised. Otherwise, the argument may be a
plain or long integer or a floating point number. Conversion of floating
point numbers to integers truncates (towards zero). If the argument is
outside the integer range a long object will be returned instead. If no
arguments are given,
returns ``0``.
The integer type is described in :ref:`typesnumeric`.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment