8000 bpo-45583: Correct datamodel.rst documentation of int() by Arthur-Milchior · Pull Request #29182 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-45583: Correct datamodel.rst documentation of int() #29182

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 1 commit into from
Oct 28, 2021
Merged
Changes from all commits
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
bpo-45583: Correct datamodel documentation of int()
It should be noted that this part of the documentation is redundant with
function.rst's documentation of int. This one was correctly updated with Python 3.8
  • Loading branch information
Arthur-Milchior committed Oct 24, 2021
commit eff1a2b3ff31205a394f2e3398d769121e816fd7
4 changes: 2 additions & 2 deletions Doc/reference/datamodel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2577,8 +2577,8 @@ left undefined.
return the value of the object truncated to an :class:`~numbers.Integral`
(typically an :class:`int`).

If :meth:`__int__` is not defined then the built-in function :func:`int`
falls back to :meth:`__trunc__`.
The built-in function :func:`int` falls back to :meth:`__trunc__` if neither
:meth:`__int__` nor :meth:`__index__` is defined.


.. _context-managers:
Expand Down
0