From: Erlend Egeberg Aasland Date: Fri, 24 Jun 2022 10:36:59 +0000 (+0200) Subject: gh-93692: remove "build finished successfully" message from setup.py (#93693) X-Git-Tag: v3.12.0a1~1135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab077d1e17032f84514292ae3fb8dee9bcfd2ce9;p=thirdparty%2FPython%2Fcpython.git gh-93692: remove "build finished successfully" message from setup.py (#93693) The message was only emitted when the build succeeded _and_ there were missing modules. --- diff --git a/setup.py b/setup.py index 4c497346e8d7..bba344c3af07 100644 --- 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)