Commit 916ff51e authored by doko's avatar doko

- Issue #21223: Pass test_site/test_startup_imports when some of the extensions

  are built as builtins.
parent 735cc4f8
...@@ -459,7 +459,8 @@ class StartupImportTests(unittest.TestCase): ...@@ -459,7 +459,8 @@ class StartupImportTests(unittest.TestCase):
# 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',
'reprlib', 'types', 'weakref'} 'reprlib', 'types', 'weakref'
}.difference(sys.builtin_module_names)
self.assertFalse(modules.intersection(collection_mods), stderr) self.assertFalse(modules.intersection(collection_mods), stderr)
......
...@@ -190,6 +190,9 @@ Documentation ...@@ -190,6 +190,9 @@ Documentation
Tests Tests
----- -----
- Issue #21223: Pass test_site/test_startup_imports when some of the extensions
are built as builtins.
- Issue #20635: Added tests for Tk geometry managers. - Issue #20635: Added tests for Tk geometry managers.
- Add test case for freeze. - Add test case for freeze.
......
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