changeset: 94989:fabbe6093567 user: Steve Dower date: Sat Mar 14 11:48:44 2015 -0700 files: Lib/ctypes/test/test_loading.py description: Issue #23606: Temporarily suppress test for CRT name. diff -r 4b0d12f0d8fa -r fabbe6093567 Lib/ctypes/test/test_loading.py --- a/Lib/ctypes/test/test_loading.py Sat Mar 14 11:39:18 2015 -0700 +++ b/Lib/ctypes/test/test_loading.py Sat Mar 14 11:48:44 2015 -0700 @@ -52,7 +52,9 @@ @unittest.skipUnless(os.name in ("nt", "ce"), 'test specific to Windows (NT/CE)') def test_load_library(self): - self.assertIsNotNone(libc_name) + # CRT is no longer directly loadable. See issue23606 for the + # discussion about alternative approaches. + #self.assertIsNotNone(libc_name) if test.support.verbose: print(find_library("kernel32")) print(find_library("user32"))