summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Modules/_threadmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tools/python3/Modules/_threadmodule.c')
-rw-r--r--contrib/tools/python3/Modules/_threadmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tools/python3/Modules/_threadmodule.c b/contrib/tools/python3/Modules/_threadmodule.c
index 568fe8375d1..365f4460088 100644
--- a/contrib/tools/python3/Modules/_threadmodule.c
+++ b/contrib/tools/python3/Modules/_threadmodule.c
@@ -1190,7 +1190,7 @@ thread_PyThread_start_new_thread(PyObject *self, PyObject *fargs)
"thread is not supported for isolated subinterpreters");
return NULL;
}
- if (interp->finalizing) {
+ if (_PyInterpreterState_GetFinalizing(interp) != NULL) {
PyErr_SetString(PyExc_RuntimeError,
"can't create new thread at interpreter shutdown");
return NULL;