We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4274609 commit a6fba9bCopy full SHA for a6fba9b
Lib/test/test_asyncio/test_events.py
@@ -2155,6 +2155,10 @@ def tearDown(self):
2155
super().tearDown()
2156
2157
def test_get_event_loop_new_process(self):
2158
+ # Issue bpo-32126: The multiprocessing module used by
2159
+ # ProcessPoolExecutor is not functional when the
2160
+ # multiprocessing.synchronize module cannot be imported.
2161
+ support.import_module('multiprocessing.synchronize')
2162
async def main():
2163
pool = concurrent.futures.ProcessPoolExecutor()
2164
result = await self.loop.run_in_executor(
Misc/NEWS.d/next/Tests/2017-11-24-18-15-12.bpo-32126.PLmNLn.rst
@@ -0,0 +1,2 @@
1
+Skip test_get_event_loop_new_process in test.test_asyncio.test_events when
2
+sem_open() is not functional.
0 commit comments