diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-10-05 09:32:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 09:32:00 (GMT) |
commit | dcc54215ac1eb4b6fab2a9ffe1abcdf3ac4bb77e (patch) | |
tree | b5cd4ca84fa87dc7d91b6709b76d134a84aee6b2 /Include/cpython | |
parent | 9a7642667a71a27b38b96eb63df45f17f48b3467 (diff) | |
download | cpython-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.h | 2 |
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. |