summaryrefslogtreecommitdiffstats
path: root/Include/cpython
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 /Include/cpython
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 'Include/cpython')
-rw-r--r--Include/cpython/pystate.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/cpython/pystate.h b/Include/cpython/pystate.h
index 42a7fc1..5d5e4e3 100644
--- a/Include/cpython/pystate.h
+++ b/Include/cpython/pystate.h
@@ -56,8 +56,6 @@ struct _ts {
int recursion_depth;
char overflowed; /* The stack has overflowed. Allow 50 more calls
to handle the runtime error. */
- char recursion_critical; /* The current calls must not cause
- a stack overflow. */
int stackcheck_counter;
/* 'tracing' keeps track of the execution depth when tracing/profiling.