From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Wed, 5 Nov 2025 10:58:04 +0000 (+0000) Subject: Fix a bug in not setting executors X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f52668891a1eea1e564bb1968613ee0742ca73eb;p=thirdparty%2FPython%2Fcpython.git Fix a bug in not setting executors --- diff --git a/Python/jit.c b/Python/jit.c index c3f3d686013f..4c412958cb76 100644 --- a/Python/jit.c +++ b/Python/jit.c @@ -645,6 +645,7 @@ _Py_LazyJitTrampoline( } _Py_jit_entry = trampoline; } + tstate->current_executor = (PyObject *)executor; PyMutex_Unlock(&lazy_jit_mutex); return _Py_jit_entry(executor, frame, stack_pointer, tstate); }