Skip to content

Commit 08c26d3

Browse files
committed
Forgot to commit codeobject.c
1 parent 871dc4c commit 08c26d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/codeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,7 @@ clear_executors(PyCodeObject *co)
16071607
assert(co->co_executors);
16081608
for (int i = 0; i < co->co_executors->size; i++) {
16091609
if (co->co_executors->executors[i]) {
1610-
_Py_ExecutorDetach(co->co_executors->executors[i]);
1610+
_Py_ExecutorClear(co->co_executors->executors[i]);
16111611
assert(co->co_executors->executors[i] == NULL);
16121612
}
16131613
}

0 commit comments

Comments
 (0)