8000 gh-100428: Make int documentation more accurate by hauntsaninja · Pull Request #100436 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-100428: Make int documentation more accurate #100436

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 2, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
phrasing nitpick
  • Loading branch information
hauntsaninja committed Jan 1, 2023
commit d773d7f1604085431d2c423aa561fa16bd4d8814
2 changes: 1 addition & 1 deletion Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ are always available. They are listed here in alphabetical order.
:class:`bytes`, or :class:`bytearray` instance representing an integer
in radix *base*. Optionally, the string can be preceded by ``+`` or ``-``
(with no space in between), have leading zeros, be surrounded by whitespace,
and have interspersed single underscores.
and have single underscores interspersed between digits.

A base-n integer string contains digits, each representing a value from 0 to
n-1. The values 0--9 can be represented by any Unicode decimal digit. The
Expand Down
0