mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #5944: Skip PEP 383 tests on OS X.
This commit is contained in:
parent
f172637bc7
commit
70613685ad
1 changed files with 1 additions and 0 deletions
|
@ -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")]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue