https://github.com/python/cpython/commit/700e9fad70da3f1da008c3231749e3861fbce897
commit: 700e9fad70da3f1da008c3231749e3861fbce897
branch: main
author: Chris Eibl <[email protected]>
committer: Fidget-Spinner <[email protected]>
date: 2025-12-22T17:10:52Z
summary:

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

fix missing return in executor_clear

files:
M Python/optimizer.c

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

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to