diff options
| author | Gregory P. Smith <greg@krypto.org> | 2021-04-04 11:02:29 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-04 11:02:29 (GMT) |
| commit | c7b0feca25fc68ec3e0884b82e5f45a4da011e8e (patch) | |
| tree | 0dff16d035648b7c31fb291d40430407484579c6 /Python/pystate.c | |
| parent | de0b2b133011953b02536cc78f2499d5d55224f8 (diff) | |
| download | cpython-c7b0feca25fc68ec3e0884b82e5f45a4da011e8e.zip cpython-c7b0feca25fc68ec3e0884b82e5f45a4da011e8e.tar.gz cpython-c7b0feca25fc68ec3e0884b82e5f45a4da011e8e.tar.bz2 | |
[3.9] bpo-43710: Rollback the 3.9 bpo-42500 fix, it broke the ABI in 3.9.3 (#25179)
This reverts commit 8b795ab5541d8a4e69be4137dfdc207714270b77.
It changed the PyThreadState structure size, breaking the ABI in 3.9.3.
Diffstat (limited to 'Python/pystate.c')
| -rw-r--r-- | Python/pystate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index 71aac6f..9beefa8 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -576,7 +576,7 @@ new_threadstate(PyInterpreterState *interp, int init) tstate->frame = NULL; tstate->recursion_depth = 0; - tstate->recursion_headroom = 0; + tstate->overflowed = 0; tstate->recursion_critical = 0; tstate->stackcheck_counter = 0; tstate->tracing = 0; |
