[Python-checkins] cpython (merge 3.4 -> default): Merge with 3.4 (#23256)

zach.ware python-checkins at python.org
Sat Jan 17 15:53:19 CET 2015


https://hg.python.org/cpython/rev/b5821f7493c1
changeset:   94191:b5821f7493c1
parent:      94189:d3671e6ba106
parent:      94190:2bbd7b739b85
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Sat Jan 17 08:53:09 2015 -0600
summary:
  Merge with 3.4 (#23256)

files:
  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
--- a/Lib/ctypes/test/test_win32.py
+++ b/Lib/ctypes/test/test_win32.py
@@ -38,7 +38,7 @@
 @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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list