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 6d62f4a commit db32325Copy full SHA for db32325
Lib/test/test_importlib/extension/test_finder.py
@@ -62,7 +62,8 @@ def test_failure(self):
62
def test_abi3_extension_suffixes(self):
63
suffixes = self.machinery.EXTENSION_SUFFIXES
64
if 'win32' in sys.platform:
65
- self.assertIn(".pyd", suffixes)
+ # Either "_d.pyd" or ".pyd" must be in suffixes
66
+ self.assertTrue({"_d.pyd", ".pyd"}.intersection(suffixes))
67
elif 'cygwin' in sys.platform:
68
pass
69
else:
0 commit comments