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

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.
This commit is contained in:
Arthur Milchior 2021-10-28 21:48:37 +02:00 committed by GitHub
parent cd30613165
commit d9c1868c25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: