Skip to content

Commit 9db8638

Browse files
Update Python/optimizer.c
Co-authored-by: Mikhail Efimov <efimov.mikhail@gmail.com>
1 parent 1b99fc1 commit 9db8638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/optimizer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1676,7 +1676,7 @@ executor_clear(PyObject *op)
16761676
_PyExecutorObject *e = executor->exits[i].executor;
16771677
executor->exits[i].executor = NULL;
16781678
if (e != cold && e != cold_dynamic) {
1679-
executor_clear(e);
1679+
executor_clear((PyObject *)e);
16801680
}
16811681
}
16821682
_Py_ExecutorDetach(executor);

0 commit comments

Comments
 (0)