[Python-checkins] gh-93692: remove "build finished successfully" message from setup.py (#93693)

erlend-aasland webhook-mailer at python.org
Fri Jun 24 06:37:04 EDT 2022


https://github.com/python/cpython/commit/ab077d1e17032f84514292ae3fb8dee9bcfd2ce9
commit: ab077d1e17032f84514292ae3fb8dee9bcfd2ce9
branch: main
author: Erlend Egeberg Aasland <erlend.aasland at protonmail.com>
committer: erlend-aasland <erlend.aasland at protonmail.com>
date: 2022-06-24T12:36:59+02:00
summary:

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.

files:
M setup.py

diff --git a/setup.py b/setup.py
index 4c497346e8d7e..bba344c3af07c 100644
--- a/setup.py
+++ b/setup.py
@@ -538,7 +538,6 @@ def print_three_column(lst):
 
         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)



More information about the Python-checkins mailing list