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
This commit is contained in:
Victor Stinner 2022-05-09 14:26:30 +02:00 committed by GitHub
parent d8104d13cd
commit 11a608d2b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,11 +94,6 @@ Optimizations
Build and C API Changes
=======================
* :c:func:`PyFrame_BlockSetup` and :c:func:`PyFrame_BlockPop` have been removed.
Deprecated Deprecated
========== ==========
@ -124,3 +119,25 @@ Changes in the Python API
The group name in bytes patterns and replacement strings can now only The group name in bytes patterns and replacement strings can now only
contain ASCII letters and digits and underscore. contain ASCII letters and digits and underscore.
(Contributed by Serhiy Storchaka in :gh:`91760`.) (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.