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 1d0b61b commit dc8d4b8Copy full SHA for dc8d4b8
Lib/test/test_importlib/extension/test_finder.py
@@ -66,7 +66,9 @@ def test_abi3_extension_suffixes(self):
66
elif 'cygwin' in sys.platform:
67
pass
68
else:
69
- if not Py_GIL_DISABLED:
+ if Py_GIL_DISABLED:
70
+ self.assertNotIn(".abi3.so", suffixes)
71
+ else:
72
self.assertIn(".abi3.so", suffixes)
73
self.assertIn(".abi3t.so", suffixes)
74
0 commit comments