From: Victor Stinner Date: Mon, 9 May 2022 12:26:30 +0000 (+0200) Subject: What's New in Python 3.12: move C API at the end (#92555) X-Git-Tag: v3.12.0a1~1619 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=11a608d2b1b9c10079a1fe2ebf815a638c640c79;p=thirdparty%2FPython%2Fcpython.git What's New in Python 3.12: move C API at the end (#92555) * Separate Build and C API changes in two sections * Add sub-sections to the C API changes --- diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index b73c3db04001..af8973ae2030 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.