diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-15 11:43:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 11:43:44 (GMT) |
commit | a7f8dfd25a167ccfde9996c499fa38a2aba60022 (patch) | |
tree | 71da5f1e42f0c885a3efcc35efdcd0771252aa9a /Doc | |
parent | 79bc5e1dc6f87149240bded3654574b24168f1ac (diff) | |
download | cpython-a7f8dfd25a167ccfde9996c499fa38a2aba60022.zip cpython-a7f8dfd25a167ccfde9996c499fa38a2aba60022.tar.gz cpython-a7f8dfd25a167ccfde9996c499fa38a2aba60022.tar.bz2 |
bpo-44113: Move the What's New entry to Deprecate section (GH-28974)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 994fb84..8a3deaa 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -583,13 +583,6 @@ 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`.) - * Deprecate the following functions to configure the Python initialization: * :c:func:`PySys_AddWarnOptionUnicode` @@ -606,6 +599,13 @@ Removed <init-config>` instead (:pep:`587`). (Contributed by Victor Stinner in :issue:`44113`.) +Removed +------- + +* :c:func:`PyFrame_BlockSetup` and :c:func:`PyFrame_BlockPop` have been + removed. + (Contributed by Mark Shannon in :issue:`40222`.) + * Remove the following math macros using the ``errno`` variable: * ``Py_ADJUST_ERANGE1()`` |