From b849b255c5c7667d95abe4b84aff8fd1a5a28e40 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Fri, 4 Apr 2025 13:19:11 +0300 Subject: [PATCH] List PEP 758 and 768 in release highlights --- Doc/whatsnew/3.14.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 3223dde270f60b..78d2916eb8b56f 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -66,9 +66,11 @@ Summary -- release highlights * :ref:`PEP 649: deferred evaluation of annotations ` * :ref:`PEP 741: Python Configuration C API ` +* :ref:`PEP 758: Allow except and except* expressions without parentheses ` * :ref:`PEP 761: Discontinuation of PGP signatures ` -* :ref:`A new type of interpreter ` * :ref:`PEP 765: Disallow return/break/continue that exit a finally block ` +* :ref:`PEP 768: Safe external debugger interface for CPython ` +* :ref:`A new type of interpreter ` Incompatible changes @@ -90,7 +92,7 @@ If you encounter :exc:`NameError`\s or pickling errors coming out of New features ============ -.. _whatsnew314-pep678: +.. _whatsnew314-pep768: PEP 768: Safe external debugger interface for CPython ----------------------------------------------------- @@ -437,7 +439,7 @@ Other language changes * Support underscore and comma as thousands separators in the fractional part for floating-point presentation types of the new-style string formatting (with :func:`format` or :ref:`f-strings`). - (Contrubuted by Sergey B Kirpichev in :gh:`87790`.) + (Contributed by Sergey B Kirpichev in :gh:`87790`.) * The :func:`bytes.fromhex` and :func:`bytearray.fromhex` methods now accept ASCII :class:`bytes` and :term:`bytes-like objects `.