Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a2a9df9

Browse files
committed
Issue #23606: Temporarily suppress test for CRT name.
1 parent 9aa31d5 commit a2a9df9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Lib/ctypes/test/test_loading.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ def test_find(self):
5252
@unittest.skipUnless(os.name in ("nt", "ce"),
5353
'test specific to Windows (NT/CE)')
5454
def test_load_library(self):
55-
self.assertIsNotNone(libc_name)
55+
# CRT is no longer directly loadable. See issue23606 for the
56+
# discussion about alternative approaches.
57+
#self.assertIsNotNone(libc_name)
5658
if test.support.verbose:
5759
print(find_library("kernel32"))
5860
print(find_library("user32"))

0 commit comments

Comments
 (0)