]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-45583: Correct datamodel documentation of int() (GH-29182) (GH-29286)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 28 Oct 2021 20:17:20 +0000 (13:17 -0700)
committerGitHub <noreply@github.com>
Thu, 28 Oct 2021 20:17:20 +0000 (22:17 +0200)
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@milchior.fr>
Doc/reference/datamodel.rst

index 94f7e5a23b8a45394453cec168806e860766909b..29a6987054df43deb5c5178006534103711b3661 100644 (file)
@@ -2512,8 +2512,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: