mirror of https://github.com/python/cpython
Issue #23606: Disable ctypes.util.find_library("c") on Windows so tests are skipped while we figure out how best to approach the CRT change
This commit is contained in:
parent
e3e56fea2a
commit
959ee7c200
|
@ -41,7 +41,9 @@ if os.name == "nt":
|
|||
elif version <= 13:
|
||||
clibname = 'msvcr%d' % (version * 10)
|
||||
else:
|
||||
clibname = 'appcrt%d' % (version * 10)
|
||||
# CRT is no longer directly loadable. See issue23606 for the
|
||||
# discussion about alternative approaches.
|
||||
return None
|
||||
|
||||
# If python was built with in debug mode
|
||||
import importlib.machinery
|
||||
|
|
Loading…
Reference in New Issue