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.
d
ABIFLAGS
1 parent 084deac commit af50632Copy full SHA for af50632
1 file changed
Lib/test/test_sysconfig.py
@@ -625,6 +625,9 @@ def test_abiflags(self):
625
self.assertEqual(abiflags, '')
626
627
if support.Py_DEBUG:
628
+ # The 'd' flag should always be the last one.
629
+ # On Windows, the debug flag is used differently with a underscore prefix.
630
+ # For example, `python{X}.{Y}td` on Unix and ```python{X}.{Y}t_d.exe` on Windows.
631
self.assertEndsWith(ABIFLAGS, 'd')
632
else:
633
self.assertNotIn('d', ABIFLAGS)
0 commit comments