Commit 456a2701 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #25365: test_pickle now works in threads disabled builds.

parents 9e777730 7b2cfc44
...@@ -380,8 +380,9 @@ class CompatPickleTests(unittest.TestCase): ...@@ -380,8 +380,9 @@ class CompatPickleTests(unittest.TestCase):
self.assertEqual(mapping('exceptions', name), self.assertEqual(mapping('exceptions', name),
('builtins', name)) ('builtins', name))
import multiprocessing.context def test_multiprocessing_exceptions(self):
for name, exc in get_exceptions(multiprocessing.context): module = support.import_module('multiprocessing.context')
for name, exc in get_exceptions(module):
with self.subTest(name): with self.subTest(name):
self.assertEqual(reverse_mapping('multiprocessing.context', name), self.assertEqual(reverse_mapping('multiprocessing.context', name),
('multiprocessing', name)) ('multiprocessing', name))
......
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