mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
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
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue