]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-93692: remove "build finished successfully" message from setup.py (GH-93693)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 24 Jun 2022 11:03:35 +0000 (04:03 -0700)
committerGitHub <noreply@github.com>
Fri, 24 Jun 2022 11:03:35 +0000 (04:03 -0700)
The message was only emitted when the build succeeded _and_ there were
missing modules.
(cherry picked from commit ab077d1e17032f84514292ae3fb8dee9bcfd2ce9)

Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
setup.py

index e74a275edbf2d05d39cb32577c690897066fd380..4894adfc8215c52739b16e0b5d1c2674561b790d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -519,7 +519,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)