From f52668891a1eea1e564bb1968613ee0742ca73eb Mon Sep 17 00:00:00 2001 From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Wed, 5 Nov 2025 10:58:04 +0000 Subject: [PATCH] Fix a bug in not setting executors --- Python/jit.c | 1 + 1 file changed, 1 insertion(+) 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); } -- 2.47.3