We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1874cf1 commit 492807cCopy full SHA for 492807c
Python/optimizer.c
@@ -257,6 +257,10 @@ uop_dealloc(_PyExecutorObject *self) {
257
_PyObject_GC_UNTRACK(self);
258
assert(self->vm_data.code == NULL);
259
unlink_executor(self);
260
+ for (uint32_t i = 0; i < self->exit_count; i++) {
261
+ self->exits[i].temperature = initial_unreachable_backoff_counter();
262
+ Py_CLEAR(self->exits[i].executor);
263
+ }
264
#ifdef _Py_JIT
265
_PyJIT_Free(self);
266
#endif
0 commit comments