Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a79e4fb commit ae95b4fCopy full SHA for ae95b4f
2 files changed
Misc/NEWS
@@ -631,6 +631,8 @@ IDLE
631
Build
632
-----
633
634
+- Issue #17845: Clarified the message printed when some module are not built.
635
+
636
- Issue #18256: Compilation fix for recent AIX releases. Patch by
637
David Edelsohn.
638
setup.py
@@ -259,8 +259,9 @@ def print_three_column(lst):
259
260
if missing:
261
print()
262
- print("Python build finished, but the necessary bits to build "
263
- "these modules were not found:")
+ print("Python build finished successfully!")
+ print("The necessary bits to build these optional modules were not "
264
+ "found:")
265
print_three_column(missing)
266
print("To find the necessary bits, look in setup.py in"
267
" detect_modules() for the module's name.")
0 commit comments