Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aa31d5 commit a2a9df9Copy full SHA for a2a9df9
1 file changed
Lib/ctypes/test/test_loading.py
@@ -52,7 +52,9 @@ def test_find(self):
52
@unittest.skipUnless(os.name in ("nt", "ce"),
53
'test specific to Windows (NT/CE)')
54
def test_load_library(self):
55
- self.assertIsNotNone(libc_name)
+ # CRT is no longer directly loadable. See issue23606 for the
56
+ # discussion about alternative approaches.
57
+ #self.assertIsNotNone(libc_name)
58
if test.support.verbose:
59
print(find_library("kernel32"))
60
print(find_library("user32"))
0 commit comments