8000
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 210cd98 commit 008f9ddCopy full SHA for 008f9dd
Lib/test/test_logging.py
@@ -3894,9 +3894,9 @@ def test_config_queue_handler(self):
3894
msg = str(ctx.exception)
3895
self.assertEqual(msg, "Unable to configure handler 'ah'")
3896
3897
- @unittest.skipIf(support.is_wasi, "WASI does not have multiprocessing.")
3898
def test_multiprocessing_queues(self):
3899
# See gh-119819
+ import_helper.import_module('_multiprocessing') # will skip test if it's not available
3900
cd = copy.deepcopy(self.config_queue_handler)
3901
from multiprocessing import Queue as MQ, Manager as MM
3902
q1 = MQ() # this can't be pickled
0 commit comments