From 26d5833a7419fbc359034fec535020c8d1a5ab0f Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sun, 2 Jun 2024 09:35:04 +0100 Subject: [PATCH] Grammar nit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> --- Doc/whatsnew/3.14.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 262ebfdc95b4e4..4c1fc0068e2088 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -210,7 +210,7 @@ Others * The :func:`int` built-in will no longer delegate to :meth:`~object.__trunc__`. Classes that want to support conversion to :func:`int` must implement either :meth:`~object.__int__` or - :meth:`~object.__index__`. (Contributed by Mark Dickinson in :gh:`119743`). + :meth:`~object.__index__`. (Contributed by Mark Dickinson in :gh:`119743`.) Porting to Python 3.14