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 c895b1d commit 44200b3Copy full SHA for 44200b3
Lib/test/test_sys.py
@@ -741,7 +741,7 @@ def test_thread_info(self):
741
742
def test_abi_info(self):
743
info = sys.abi_info
744
- self.assertEqual(len(info), 3)
+ self.assertEqual(len(info.__dict__), 3)
745
pointer_bits = 64 if sys.maxsize > 2**32 else 32
746
self.assertEqual(info.pointer_bits, pointer_bits)
747
for flag in ["Py_GIL_DISABLED", "Py_DEBUG"]:
0 commit comments