Kaydet (Commit) ae95b4f7 authored tarafından Brett Cannon's avatar Brett Cannon

Issue #17845: Clarify the message setup.py prints upon successfully

building Python but having some optional module which didn't build.

Patch by Yogesh Chaudhari.
üst a79e4fb3
......@@ -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.
......
......@@ -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.")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment