From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Wed, 5 Nov 2025 11:01:53 +0000 (+0000) Subject: Revert "Fix a bug in not setting executors" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c78a4e649fe494f8f32ba6af1daeea8ab3f273ee;p=thirdparty%2FPython%2Fcpython.git Revert "Fix a bug in not setting executors" This reverts commit f52668891a1eea1e564bb1968613ee0742ca73eb. --- diff --git a/Python/jit.c b/Python/jit.c index 4c412958cb76..c3f3d686013f 100644 --- a/Python/jit.c +++ b/Python/jit.c @@ -645,7 +645,6 @@ _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); }