From d8bf8732dfe44861114e1541019aa0136492b917 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 9 May 2022 13:08:49 +0200 Subject: [PATCH] What's New in Python 3.12: move C API at the end * Separate Build and C API changes in two sections * Add sub-sections to the C API changes --- Doc/whatsnew/3.12.rst | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index b73c3db040019e..af8973ae203040 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -94,11 +94,6 @@ Optimizations -Build and C API Changes -======================= - -* :c:func:`PyFrame_BlockSetup` and :c:func:`PyFrame_BlockPop` have been removed. - Deprecated ========== @@ -124,3 +119,25 @@ Changes in the Python API The group name in bytes patterns and replacement strings can now only contain ASCII letters and digits and underscore. (Contributed by Serhiy Storchaka in :gh:`91760`.) + + +Build Changes +============= + + +C API Changes +============= + +New Features +------------ + +Porting to Python 3.12 +---------------------- + +Deprecated +---------- + +Removed +------- + +* :c:func:`PyFrame_BlockSetup` and :c:func:`PyFrame_BlockPop` have been removed.