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

miss-islington webhook-mailer at python.org
Fri Jun 24 07:03:44 EDT 2022


https://github.com/python/cpython/commit/92d32b9f724249f97e3dc77ada87a8203c26b929
commit: 92d32b9f724249f97e3dc77ada87a8203c26b929
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-06-24T04:03:35-07:00
summary:

gh-93692: remove "build finished successfully" message from setup.py (GH-93693)


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 at protonmail.com>

files:
M setup.py

diff --git a/setup.py b/setup.py
index e74a275edbf2d..4894adfc8215c 100644
--- a/setup.py
+++ b/setup.py
@@ -519,7 +519,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