]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
What's New in Python 3.12: move C API at the end (#92555)
authorVictor Stinner <vstinner@python.org>
Mon, 9 May 2022 12:26:30 +0000 (14:26 +0200)
committerGitHub <noreply@github.com>
Mon, 9 May 2022 12:26:30 +0000 (14:26 +0200)
* Separate Build and C API changes in two sections
* Add sub-sections to the C API changes

Doc/whatsnew/3.12.rst

index b73c3db040019e42da1feeb6fae47424e42d5ffe..af8973ae2030409a12001331c8361eab0b3b241b 100644 (file)
@@ -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.