[Python-checkins] bpo-45583: Correct datamodel documentation of int() (GH-29182) (GH-29287)

ambv webhook-mailer at python.org
Thu Oct 28 16:02:13 EDT 2021


https://github.com/python/cpython/commit/76658e5bdbdf57464f4b43f1625c02c2ba4222dd
commit: 76658e5bdbdf57464f4b43f1625c02c2ba4222dd
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2021-10-28T22:02:07+02:00
summary:

bpo-45583: Correct datamodel documentation of int() (GH-29182) (GH-29287)

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.
(cherry picked from commit d9c1868c25ec6466e8d8ae21fe9315a8a03836ab)

Co-authored-by: Arthur Milchior <arthur at milchior.fr>

files:
M Doc/reference/datamodel.rst

diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 20d6e326b8b5e..92058aa4ed886 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -2507,8 +2507,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:



More information about the Python-checkins mailing list