From c49e824c90c5cccc59b11789d2c5907168ba08d8 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:42:47 +0200 Subject: [PATCH 1/3] Add missing .s --- Doc/whatsnew/3.14.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index f2c357b1ebc709..7d8641852a26ae 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -228,7 +228,7 @@ argparse * Introduced the optional *suggest_on_error* parameter to :class:`argparse.ArgumentParser`, enabling suggestions for argument choices and subparser names if mistyped by the user. - (Contributed by Savannah Ostrowski in :gh:`124456`) + (Contributed by Savannah Ostrowski in :gh:`124456`.) ast --- @@ -425,7 +425,7 @@ multiprocessing * :meth:`~dict.fromkeys`, ``reversed(d)``, ``d | {}``, ``{} | d``, ``d |= {'b': 2}`` for proxies of :class:`dict`. - (Contributed by Roy Hyunjin Han for :gh:`103134`) + (Contributed by Roy Hyunjin Han for :gh:`103134`.) operator From 1daa87503b711cccd8f501d4d7e61590448f4ea9 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:42:57 +0200 Subject: [PATCH 2/3] Fix typo --- 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 7d8641852a26ae..d24e94f10ba548 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -860,7 +860,7 @@ New features * Add :c:func:`PyLong_IsPositive`, :c:func:`PyLong_IsNegative` and :c:func:`PyLong_IsZero` for checking if :c:type:`PyLongObject` is positive, negative, or zero, respectively. - (Contribued by James Roy and Sergey B Kirpichev in :gh:`126061`.) + (Contributed by James Roy and Sergey B Kirpichev in :gh:`126061`.) * Add new functions to convert C ```` numbers from/to Python :class:`int`: From 5e31dc0b4f89e0b256730ca60053f96b69cb534c Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:43:19 +0200 Subject: [PATCH 3/3] Sort alphabetically --- Doc/whatsnew/3.14.rst | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index d24e94f10ba548..13212bf0675103 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -273,6 +273,12 @@ ctypes to help match a non-default ABI. (Contributed by Petr Viktorin in :gh:`97702`.) +datetime +-------- + +* Add :meth:`datetime.time.strptime` and :meth:`datetime.date.strptime`. + (Contributed by Wannes Boeykens in :gh:`41431`.) + decimal ------- @@ -280,12 +286,6 @@ decimal :meth:`Decimal.from_number() `. (Contributed by Serhiy Storchaka in :gh:`121798`.) -datetime --------- - -* Add :meth:`datetime.time.strptime` and :meth:`datetime.date.strptime`. - (Contributed by Wannes Boeykens in :gh:`41431`.) - dis --- @@ -468,14 +468,6 @@ pathlib (Contributed by Barney Gale in :gh:`125413`.) -platform --------- - -* Add :func:`platform.invalidate_caches` to invalidate the cached results. - - (Contributed by Bénédikt Tran in :gh:`122549`.) - - pdb --- @@ -490,6 +482,14 @@ pdb command when :mod:`pdb` is in ``inline`` mode. (Contributed by Tian Gao in :gh:`123757`.) +platform +-------- + +* Add :func:`platform.invalidate_caches` to invalidate the cached results. + + (Contributed by Bénédikt Tran in :gh:`122549`.) + + pickle ------