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 cd87737 commit 5ee4aefCopy full SHA for 5ee4aef
Lib/test/test_logging.py
@@ -43,6 +43,7 @@
43
import tempfile
44
from test.support.script_helper import assert_python_ok, assert_python_failure
45
from test import support
46
+from test.support import import_helper
47
from test.support import os_helper
48
from test.support import socket_helper
49
from test.support import threading_helper
@@ -3894,7 +3895,8 @@ def test_90195(self):
3894
3895
3896
def test_111615(self):
3897
# See gh-111615
- import multiprocessing as mp
3898
+ import_helper.import_module('_multiprocessing') # see gh-113692
3899
+ mp = import_helper.import_module('multiprocessing')
3900
3901
config = {
3902
'version': 1,
0 commit comments