diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-01-17 08:53:09 -0600 |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-01-17 08:53:09 -0600 |
commit | a37de2a4c968f55b0b29a8272dfd3c1bebb9a613 (patch) | |
tree | b721f9135b53dc19dd80d9c7d9c960aa6846da4a /Lib/ctypes | |
parent | 7d7065cfc6b449f7424a5cd6d2999bfef0265ff9 (diff) | |
parent | 356f62a6bfa59e06a971cfc2ea47b42771d4bed1 (diff) | |
download | cpython-a37de2a4c968f55b0b29a8272dfd3c1bebb9a613.tar.gz |
Merge with 3.4 (#23256)
Diffstat (limited to 'Lib/ctypes')
-rw-r--r-- | Lib/ctypes/test/test_win32.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_win32.py b/Lib/ctypes/test/test_win32.py index b90ab718eb..5867b05929 100644 --- a/Lib/ctypes/test/test_win32.py +++ b/Lib/ctypes/test/test_win32.py @@ -38,7 +38,7 @@ class WindowsTestCase(unittest.TestCase): @unittest.skipUnless(sys.platform == "win32", 'Windows-specific test') class FunctionCallTestCase(unittest.TestCase): @unittest.skipUnless('MSC' in sys.version, "SEH only supported by MSC") - @unittest.skipIf(sys.executable.endswith('_d.exe'), + @unittest.skipIf(sys.executable.lower().endswith('_d.exe'), "SEH not enabled in debug builds") def test_SEH(self): # Call functions with invalid arguments, and make sure |