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
71d74b0c
Commit
71d74b0c
authored
Sep 30, 2012
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Close #16036: Backport 3.x documentation improvement.
See changeset 6ccb04c4cbae for the corresponding 3.3 change.
parent
95d7cdfd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
14 deletions
+23
-14
Doc/library/functions.rst
Doc/library/functions.rst
+20
-14
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/functions.rst
View file @
71d74b0c
...
@@ -623,20 +623,26 @@ available. They are listed here in alphabetical order.
...
@@ -623,20 +623,26 @@ available. They are listed here in alphabetical order.
Consider using the :func:`raw_input` function for general input from users.
Consider using the :func:`raw_input` function for general input from users.
.. function:: int([x[, base]])
.. function:: int(x=0)
int(x, base=10)
Convert a string or number to a plain integer. If the argument is a string,
it must contain a possibly signed decimal number representable as a Python
Convert a number or string *x* to an integer, or return ``0`` if no
integer, possibly embedded in whitespace. The *base* parameter gives the
arguments are given. If *x* is a number, it can be a plain integer, a long
base for the conversion (which is 10 by default) and may be any integer in
integer, or a floating point number. If *x* is floating point, the conversion
the range [2, 36], or zero. If *base* is zero, the proper radix is
truncates towards zero. If the argument is outside the integer range, the
determined based on the contents of string; the interpretation is the same as
function returns a long object instead.
for integer literals. (See :ref:`numbers`.) If *base* is specified and *x*
is not a string, :exc:`TypeError` is raised. Otherwise, the argument may be a
If *x* is not a number or if *base* is given, then *x* must be a string or
plain or long integer or a floating point number. Conversion of floating
Unicode object representing an :ref:`integer literal <integers>` in radix
point numbers to integers truncates (towards zero). If the argument is
*base*. Optionally, the literal can be
outside the integer range a long object will be returned instead. If no
preceded by ``+`` or ``-`` (with no space in between) and surrounded by
arguments are given, returns ``0``.
whitespace. A base-n literal consists of the digits 0 to n-1, with ``a``
to ``z`` (or ``A`` to ``Z``) having
values 10 to 35. The default *base* is 10. The allowed values are 0 and 2-36.
Base-2, -8, and -16 literals can be optionally prefixed with ``0b``/``0B``,
``0o``/``0O``/``0``, or ``0x``/``0X``, as with integer literals in code.
Base 0 means to interpret the string exactly as an integer literal, so that
the actual base is 2, 8, 10, or 16.
The integer type is described in :ref:`typesnumeric`.
The integer type is described in :ref:`typesnumeric`.
...
...
Misc/NEWS
View file @
71d74b0c
...
@@ -459,6 +459,9 @@ Build
...
@@ -459,6 +459,9 @@ Build
Documentation
Documentation
-------------
-------------
-
Issue
#
16036
:
Improve
documentation
of
built
-
in
int
()
's signature and
arguments.
- Issue #15935: Clarification of argparse docs, re: add_argument() type and
- Issue #15935: Clarification of argparse docs, re: add_argument() type and
default arguments. Patch contributed by Chris Jerdonek.
default arguments. Patch contributed by Chris Jerdonek.
...
...
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