diff options
Diffstat (limited to 'Python/pylifecycle.c')
-rw-r--r-- | Python/pylifecycle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index e63ecf70f3..da2bb37af5 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -548,7 +548,7 @@ pycore_create_interpreter(_PyRuntimeState *runtime, another running thread (see issue #9901). Instead we destroy the previously created GIL here, which ensures that we can call Py_Initialize / Py_FinalizeEx multiple times. */ - _PyEval_FiniThreads(&runtime->ceval); + _PyEval_FiniThreads(tstate); /* Auto-thread-state API */ status = _PyGILState_Init(tstate); |