diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-05-15 19:59:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-15 19:59:26 (GMT) |
commit | 26baa747c2ebc2beeff769bb07b5fb5a51ad5f4b (patch) | |
tree | e54b52c2c950d59a20f4b0658d8eb2af3adec246 /Modules/_winapi.c | |
parent | cb88ae635e96d7020ba6187bcfd45ace4dcd8395 (diff) | |
download | cpython-26baa747c2ebc2beeff769bb07b5fb5a51ad5f4b.zip cpython-26baa747c2ebc2beeff769bb07b5fb5a51ad5f4b.tar.gz cpython-26baa747c2ebc2beeff769bb07b5fb5a51ad5f4b.tar.bz2 |
gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-104437)
With the move to a per-interpreter GIL, this check slipped through the cracks.
Diffstat (limited to 'Modules/_winapi.c')
-rw-r--r-- | Modules/_winapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_winapi.c b/Modules/_winapi.c index 473bcb4..1e02dbc 100644 --- a/Modules/_winapi.c +++ b/Modules/_winapi.c @@ -133,7 +133,7 @@ overlapped_dealloc(OverlappedObject *self) { /* The operation is no longer pending -- nothing to do. */ } - else if (_Py_IsFinalizing()) + else if (_Py_IsInterpreterFinalizing(PyInterpreterState_Get())) { /* The operation is still pending -- give a warning. This will probably only happen on Windows XP. */ |