From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Mon, 22 Dec 2025 17:10:52 +0000 (+0100) Subject: GH-142513: fix missing return in executor_clear (GH-143073) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=700e9fad70da3f1da008c3231749e3861fbce897;p=thirdparty%2FPython%2Fcpython.git GH-142513: fix missing return in executor_clear (GH-143073) fix missing return in executor_clear --- diff --git a/Python/optimizer.c b/Python/optimizer.c index 935485549387..6e7f599fbe98 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