setup.py only reports successful builds if one or more stdlib modules are missing · Issue #93692 · python/cpython (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

@erlend-aasland

Description

@erlend-aasland

"Python build finished successfully!" is only printed if there were missing modules:

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)
print("To find the necessary bits, look in setup.py in"
" detect_modules() for the module's name.")
print()

Either we print it every time the build succeeds:

diff --git a/setup.py b/setup.py index 4c497346e8..e87da57a47 100644 --- a/setup.py +++ b/setup.py @@ -538,5 +538,9 @@ def print_three_column(lst):

Or we just remove that line from setup.py.

I'm fine with either.

Originally reported by @izumiberat in #93659 (comment)