Commit 8a2150aa authored by Ned Deily's avatar Ned Deily

Issue #28095: Temporarily disable part of test_startup_imports on OS X.

parent 59da4b32
...@@ -470,6 +470,8 @@ class StartupImportTests(unittest.TestCase): ...@@ -470,6 +470,8 @@ class StartupImportTests(unittest.TestCase):
'heapq', 'itertools', 'keyword', 'operator', 'heapq', 'itertools', 'keyword', 'operator',
'reprlib', 'types', 'weakref' 'reprlib', 'types', 'weakref'
}.difference(sys.builtin_module_names) }.difference(sys.builtin_module_names)
# http://bugs.python.org/issue28095
if sys.platform != 'darwin':
self.assertFalse(modules.intersection(collection_mods), stderr) self.assertFalse(modules.intersection(collection_mods), stderr)
......
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