https://github.com/python/cpython/commit/d1904b91cbe3b87f419307e74bbf24a368be501a
commit: d1904b91cbe3b87f419307e74bbf24a368be501a
branch: main
author: Erlend E. Aasland <[email protected]>
committer: erlend-aasland <[email protected]>
date: 2025-09-18T09:25:01Z
summary:
gh-116943: Ensure makesetup does not choke on missing EOL in Setup.* files
(#139100)
files:
M Modules/makesetup
diff --git a/Modules/makesetup b/Modules/makesetup
index f6cf695b457cbf..104c824b846540 100755
--- a/Modules/makesetup
+++ b/Modules/makesetup
@@ -90,6 +90,7 @@ NL='\
# Main loop
for i in ${*-Setup}
do
+ echo '' # Add a linebreak so we don't choke on files missing EOL.
case $i in
-n) echo '*noobjects*';;
*) echo '*doconfig*'; cat "$i";;
_______________________________________________
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]