]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-44117: Add C API section to What's New in Python 3.11 (GH-26071)
authorVictor Stinner <vstinner@python.org>
Wed, 12 May 2021 16:46:29 +0000 (18:46 +0200)
committerGitHub <noreply@github.com>
Wed, 12 May 2021 16:46:29 +0000 (18:46 +0200)
Add also references to PyFrame_BlockPop() removal.

Doc/whatsnew/3.11.rst

index dfb85e374439f3bfdfbb394846ef9daa36b6bce2..2cca9921bf0091c54fd49b95f91c524241dc7f7c 100644 (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`.)