diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-05-05 21:34:59 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-05-05 21:34:59 (GMT) |
commit | 70613685ad4f22a9a05c3f4417e81b0bc9d05c34 (patch) | |
tree | 5fd9bd369612b681e9556187186dff78c67f73e0 /Lib | |
parent | f172637bc7198e626fca2937e200170fbac64413 (diff) | |
download | cpython-70613685ad4f22a9a05c3f4417e81b0bc9d05c34.zip cpython-70613685ad4f22a9a05c3f4417e81b0bc9d05c34.tar.gz cpython-70613685ad4f22a9a05c3f4417e81b0bc9d05c34.tar.bz2 |
Issue #5944: Skip PEP 383 tests on OS X.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_os.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index a380505..014d874 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -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")] |