summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-05-09 12:26:30 (GMT)
committerGitHub <noreply@github.com>2022-05-09 12:26:30 (GMT)
commit11a608d2b1b9c10079a1fe2ebf815a638c640c79 (patch)
treee444b592fc40684f0f96a4425eec6996d044ce92 /Doc/whatsnew
parentd8104d13cd80737f5efe1cd94aeec5979f912cd0 (diff)
downloadcpython-11a608d2b1b9c10079a1fe2ebf815a638c640c79.zip
cpython-11a608d2b1b9c10079a1fe2ebf815a638c640c79.tar.gz
cpython-11a608d2b1b9c10079a1fe2ebf815a638c640c79.tar.bz2
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
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.12.rst27
1 files changed, 22 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index b73c3db..af8973a 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.