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 d55b3e6 commit a084070Copy full SHA for a084070
Lib/test/test_sysconfig.py
@@ -636,7 +636,7 @@ def test_abi_debug(self):
636
# The 'd' flag should always be the last one on Windows.
637
# On Windows, the debug flag is used differently with a underscore prefix.
638
# For example, `python{X}.{Y}td` on Unix and `python{X}.{Y}t_d.exe` on Windows.
639
- if support.Py_DEBUG and sys.platform.endswith('win'):
+ if support.Py_DEBUG and sys.platform.startswith('win'):
640
self.assertEndsWith(ABIFLAGS, '_d')
641
642
def test_abi_thread(self):
0 commit comments