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 bde52f1 commit a6fb23aCopy full SHA for a6fb23a
Lib/test/test_logging.py
@@ -3926,9 +3926,9 @@ def test_config_queue_handler(self):
3926
msg = str(ctx.exception)
3927
self.assertEqual(msg, "Unable to configure handler 'ah'")
3928
3929
- @unittest.skipIf(support.is_wasi, "WASI does not have multiprocessing.")
3930
def test_multiprocessing_queues(self):
3931
# See gh-119819
+ import_helper.import_module('_multiprocessing') # will skip test if it's not available
3932
cd = copy.deepcopy(self.config_queue_handler)
3933
from multiprocessing import Queue as MQ, Manager as MM
3934
q1 = MQ() # this can't be pickled
0 commit comments