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:
Steve Dower 2015-03-10 09:56:38 -07:00
parent e3e56fea2a
commit 959ee7c200
1 changed files with 3 additions and 1 deletions

View File

@ -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