]> granicus.if.org Git - python/commitdiff
Issue #17845: Clarify the message setup.py prints upon successfully
authorBrett Cannon <brett@python.org>
Fri, 12 Jul 2013 15:30:32 +0000 (11:30 -0400)
committerBrett Cannon <brett@python.org>
Fri, 12 Jul 2013 15:30:32 +0000 (11:30 -0400)
building Python but having some optional module which didn't build.

Patch by Yogesh Chaudhari.

Misc/NEWS
setup.py

index b65498abe463c21fe600475504a06ca11092b72b..bcdfbf3b6d5acb3f5dc0494ab6d49d7b23104acb 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -631,6 +631,8 @@ IDLE
 Build
 -----
 
+- Issue #17845: Clarified the message printed when some module are not built.
+
 - Issue #18256: Compilation fix for recent AIX releases.  Patch by
   David Edelsohn.
 
index 798220b48ecbebab42496de9227e6ec9a763992d..b2417c790e21174433a667cc97dd582a667e72f9 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -259,8 +259,9 @@ class PyBuildExt(build_ext):
 
         if missing:
             print()
-            print("Python build finished, but the necessary bits to build "
-                   "these modules were not found:")
+            print("Python build finished successfully!")
+            print("The necessary bits to build these optional modules were not "
+                  "found:")
             print_three_column(missing)
             print("To find the necessary bits, look in setup.py in"
                   " detect_modules() for the module's name.")