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 c8c23aa commit ce97454Copy full SHA for ce97454
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