summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-05-12 16:46:29 (GMT)
committerGitHub <noreply@github.com>2021-05-12 16:46:29 (GMT)
commitff230153fd2b1d0576df21ae6c29f0f2fdb0244f (patch)
tree967877ce26ab8051c93ff6a0ad164d9fea427141
parent3611db53f5b854cb6d01ee5ebb5e11c87bcc2df5 (diff)
downloadcpython-ff230153fd2b1d0576df21ae6c29f0f2fdb0244f.zip
cpython-ff230153fd2b1d0576df21ae6c29f0f2fdb0244f.tar.gz
cpython-ff230153fd2b1d0576df21ae6c29f0f2fdb0244f.tar.bz2
bpo-44117: Add C API section to What's New in Python 3.11 (GH-26071)
Add also references to PyFrame_BlockPop() removal.
-rw-r--r--Doc/whatsnew/3.11.rst26
1 files changed, 23 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index dfb85e3..2cca992 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -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`.)