Commit 86823a52 authored by Christian Heimes's avatar Christian Heimes

Issue #19275: Fix test_site on AMD64 Snow Leopard

parent e4508eeb
...@@ -443,8 +443,9 @@ class StartupImportTests(unittest.TestCase): ...@@ -443,8 +443,9 @@ class StartupImportTests(unittest.TestCase):
self.assertFalse(modules.intersection(re_mods), stderr) self.assertFalse(modules.intersection(re_mods), stderr)
# http://bugs.python.org/issue9548 # http://bugs.python.org/issue9548
self.assertNotIn('locale', modules, stderr) self.assertNotIn('locale', modules, stderr)
# http://bugs.python.org/issue19209 if sys.platform != 'darwin':
self.assertNotIn('copyreg', modules, stderr) # http://bugs.python.org/issue19209
self.assertNotIn('copyreg', modules, stderr)
# http://bugs.python.org/issue19218> # http://bugs.python.org/issue19218>
collection_mods = {'_collections', 'collections', 'functools', collection_mods = {'_collections', 'collections', 'functools',
'heapq', 'itertools', 'keyword', 'operator', 'heapq', 'itertools', 'keyword', 'operator',
......
...@@ -123,6 +123,8 @@ Library ...@@ -123,6 +123,8 @@ Library
Tests Tests
----- -----
- Issue #19275: Fix test_site on AMD64 Snow Leopard
- Issue #14407: Fix unittest test discovery in test_concurrent_futures. - Issue #14407: Fix unittest test discovery in test_concurrent_futures.
- Issue #18919: Unified and extended tests for audio modules: aifc, sunau and - Issue #18919: Unified and extended tests for audio modules: aifc, sunau and
......
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