mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
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.
This commit is contained in:
parent
a79e4fb38d
commit
ae95b4f7a5
2 changed files with 5 additions and 2 deletions
|
@ -631,6 +631,8 @@ IDLE
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #17845: Clarified the message printed when some module are not built.
|
||||||
|
|
||||||
- Issue #18256: Compilation fix for recent AIX releases. Patch by
|
- Issue #18256: Compilation fix for recent AIX releases. Patch by
|
||||||
David Edelsohn.
|
David Edelsohn.
|
||||||
|
|
||||||
|
|
5
setup.py
5
setup.py
|
@ -259,8 +259,9 @@ class PyBuildExt(build_ext):
|
||||||
|
|
||||||
if missing:
|
if missing:
|
||||||
print()
|
print()
|
||||||
print("Python build finished, but the necessary bits to build "
|
print("Python build finished successfully!")
|
||||||
"these modules were not found:")
|
print("The necessary bits to build these optional modules were not "
|
||||||
|
"found:")
|
||||||
print_three_column(missing)
|
print_three_column(missing)
|
||||||
print("To find the necessary bits, look in setup.py in"
|
print("To find the necessary bits, look in setup.py in"
|
||||||
" detect_modules() for the module's name.")
|
" detect_modules() for the module's name.")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue