diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-10-05 12:32:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 12:32:00 +0300 |
commit | dcc54215ac1eb4b6fab2a9ffe1abcdf3ac4bb77e (patch) | |
tree | b5cd4ca84fa87dc7d91b6709b76d134a84aee6b2 /Python/pystate.c | |
parent | 9a7642667a71a27b38b96eb63df45f17f48b3467 (diff) | |
download | cpython-git-dcc54215ac1eb4b6fab2a9ffe1abcdf3ac4bb77e.tar.gz |
bpo-41936. Remove macros Py_ALLOW_RECURSION/Py_END_ALLOW_RECURSION (GH-22552)
Diffstat (limited to 'Python/pystate.c')
-rw-r--r-- | Python/pystate.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index f6d1956e9d..eb24f2b800 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -581,7 +581,6 @@ new_threadstate(PyInterpreterState *interp, int init) tstate->frame = NULL; tstate->recursion_depth = 0; tstate->overflowed = 0; - tstate->recursion_critical = 0; tstate->stackcheck_counter = 0; tstate->tracing = 0; tstate->use_tracing = 0; |