bpo-44117: Add C API section to What's New in Python 3.11 (GH-26071)

Add also references to PyFrame_BlockPop() removal.
This commit is contained in:
Victor Stinner 2021-05-12 18:46:29 +02:00 committed by GitHub
parent 3611db53f5
commit ff230153fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 3 deletions

View File

@ -99,10 +99,10 @@ Optimizations
almost eliminated when no exception is raised.
(Contributed by Mark Shannon in :issue:`40222`.)
Build and C API Changes
=======================
* :c:func:`PyFrame_BlockSetup` and :c:func:`PyFrame_BlockPop` have been removed.
Build Changes
=============
Deprecated
==========
@ -119,3 +119,23 @@ Porting to Python 3.11
This section lists previously described changes and other bugfixes
that may require changes to your code.
C API Changes
=============
New Features
------------
Porting to Python 3.11
----------------------
Deprecated
----------
Removed
-------
* :c:func:`PyFrame_BlockSetup` and :c:func:`PyFrame_BlockPop` have been
removed.
(Contributed by Mark Shannon in :issue:`40222`.)