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 818628c commit c8979f7Copy full SHA for c8979f7
1 file changed
Lib/_osx_support.py
@@ -428,10 +428,9 @@ def compiler_fixup(compiler_so, cc_args):
428
break
429
430
if sysroot and not os.path.isdir(sysroot):
431
- from distutils import log
432
- log.warn("Compiling with an SDK that doesn't seem to exist: %s",
433
- sysroot)
434
- log.warn("Please check your Xcode installation")
+ sys.stderr.write(f"Compiling with an SDK that doesn't seem to exist: {sysroot}\n")
+ sys.stderr.write("Please check your Xcode installation\n")
+ sys.stderr.flush()
435
436
return compiler_so
437
0 commit comments