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 f3d5d4a commit 842b738Copy full SHA for 842b738
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
@@ -3924,7 +3925,8 @@ def test_90195(self):
3924
3925
3926
def test_111615(self):
3927
# See gh-111615
- import multiprocessing as mp
3928
+ import_helper.import_module('_multiprocessing') # see gh-113692
3929
+ mp = import_helper.import_module('multiprocessing')
3930
3931
config = {
3932
'version': 1,
0 commit comments