From 9e21085ae7537c0dbc615b0cbf2a2d31f968e72e Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Mon, 22 Dec 2025 17:13:58 +0100 Subject: [PATCH] fix missing return in executor_clear --- Python/optimizer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/optimizer.c b/Python/optimizer.c index 93548554938748..6e7f599fbe988f 100644 --- a/Python/optimizer.c +++ b/Python/optimizer.c @@ -1773,6 +1773,7 @@ static int executor_clear(PyObject *op) { executor_invalidate(op); + return 0; } void