]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-93692: remove "build finished successfully" message from setup.py (#93693)
authorErlend Egeberg Aasland <erlend.aasland@protonmail.com>
Fri, 24 Jun 2022 10:36:59 +0000 (12:36 +0200)
committerGitHub <noreply@github.com>
Fri, 24 Jun 2022 10:36:59 +0000 (12:36 +0200)
The message was only emitted when the build succeeded _and_ there were
missing modules.

setup.py

index 4c497346e8d7e278a59cff8dca59569f00ef2221..bba344c3af07cab977cce7920f65a529117ab286 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -538,7 +538,6 @@ class PyBuildExt(build_ext):
 
         if self.missing:
             print()
-            print("Python build finished successfully!")
             print("The necessary bits to build these optional modules were not "
                   "found:")
             print_three_column(self.missing)