GH-142513: fix missing return in executor_clear (GH-143073)

fix missing return in executor_clear
This commit is contained in:
Chris Eibl 2025-12-22 18:10:52 +01:00 committed by GitHub
parent 487e91c120
commit 700e9fad70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1773,6 +1773,7 @@ static int
executor_clear(PyObject *op)
{
executor_invalidate(op);
return 0;
}
void