From 700e9fad70da3f1da008c3231749e3861fbce897 Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Mon, 22 Dec 2025 18:10:52 +0100 Subject: [PATCH] GH-142513: fix missing return in executor_clear (GH-143073) 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 93548554938..6e7f599fbe9 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