mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
gh-127405: Add ABIFLAGS to sysconfig variables on Windows (GH-131799)
This commit is contained in:
parent
9ded6f0830
commit
26ae05e95c
7 changed files with 99 additions and 7 deletions
|
@ -724,6 +724,8 @@ class SysModuleTest(unittest.TestCase):
|
|||
self.assertIn(sys.float_repr_style, ('short', 'legacy'))
|
||||
if not sys.platform.startswith('win'):
|
||||
self.assertIsInstance(sys.abiflags, str)
|
||||
else:
|
||||
self.assertFalse(hasattr(sys, 'abiflags'))
|
||||
|
||||
def test_thread_info(self):
|
||||
info = sys.thread_info
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue