Commit afe83816 authored by Steve Dower's avatar Steve Dower

Issue #23606: Disable ctypes.util.find_library("c") on Windows so tests are...

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
parent 814c179b
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment