Commit 70613685 authored by Mark Dickinson's avatar Mark Dickinson

Issue #5944: Skip PEP 383 tests on OS X.

parent f172637b
......@@ -700,6 +700,7 @@ if sys.platform != 'win32':
self.assertRaises(OverflowError, os.setregid, 1<<32, 0)
self.assertRaises(OverflowError, os.setregid, 0, 1<<32)
@unittest.skipIf(sys.platform == 'darwin', "tests don't apply to OS X")
class Pep383Tests(unittest.TestCase):
filenames = [b'foo\xf6bar', 'foo\xf6bar'.encode("utf-8")]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment