summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-10-05 09:32:00 (GMT)
committerGitHub <noreply@github.com>2020-10-05 09:32:00 (GMT)
commitdcc54215ac1eb4b6fab2a9ffe1abcdf3ac4bb77e (patch)
treeb5cd4ca84fa87dc7d91b6709b76d134a84aee6b2 /Doc/whatsnew
parent9a7642667a71a27b38b96eb63df45f17f48b3467 (diff)
downloadcpython-dcc54215ac1eb4b6fab2a9ffe1abcdf3ac4bb77e.zip
cpython-dcc54215ac1eb4b6fab2a9ffe1abcdf3ac4bb77e.tar.gz
cpython-dcc54215ac1eb4b6fab2a9ffe1abcdf3ac4bb77e.tar.bz2
bpo-41936. Remove macros Py_ALLOW_RECURSION/Py_END_ALLOW_RECURSION (GH-22552)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.10.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index 9c3a028..1ea5aea 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -365,3 +365,8 @@ Removed
* Removed ``_Py_CheckRecursionLimit`` variable: it has been replaced by
``ceval.recursion_limit`` of the :c:type:`PyInterpreterState` structure.
(Contributed by Victor Stinner in :issue:`41834`.)
+
+* Removed undocumented macros ``Py_ALLOW_RECURSION`` and
+ ``Py_END_ALLOW_RECURSION`` and the ``recursion_critical`` field of the
+ :c:type:`PyInterpreterState` structure.
+ (Contributed by Serhiy Storchaka in :issue:`41936`.)