summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-06-24 11:03:35 (GMT)
committerGitHub <noreply@github.com>2022-06-24 11:03:35 (GMT)
commit92d32b9f724249f97e3dc77ada87a8203c26b929 (patch)
tree9bcffc76c3ebf8647c842b76a4476f780e5d50cd /setup.py
parent036a2c12010bcc1d8bf35c4550984a8245f9ab5f (diff)
downloadcpython-92d32b9f724249f97e3dc77ada87a8203c26b929.zip
cpython-92d32b9f724249f97e3dc77ada87a8203c26b929.tar.gz
cpython-92d32b9f724249f97e3dc77ada87a8203c26b929.tar.bz2
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@protonmail.com>
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index e74a275..4894adf 100644
--- 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)