From 959ee7c200373e77cae445283016f2827147e96a Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Tue, 10 Mar 2015 09:56:38 -0700 Subject: 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 --- Lib/ctypes/util.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/ctypes/util.py b/Lib/ctypes/util.py index 9c19899..9e74ccd 100644 --- a/Lib/ctypes/util.py +++ b/Lib/ctypes/util.py @@ -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 -- cgit v0.12