[Python-checkins] What's New in Python 3.12: move C API at the end (#92555)

vstinner webhook-mailer at python.org
Mon May 9 08:26:40 EDT 2022


https://github.com/python/cpython/commit/11a608d2b1b9c10079a1fe2ebf815a638c640c79
commit: 11a608d2b1b9c10079a1fe2ebf815a638c640c79
branch: main
author: Victor Stinner <vstinner at python.org>
committer: vstinner <vstinner at python.org>
date: 2022-05-09T14:26:30+02:00
summary:

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

files:
M Doc/whatsnew/3.12.rst

diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index b73c3db040019..af8973ae20304 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.



More information about the Python-checkins mailing list