File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 4343import tempfile
4444from test .support .script_helper import assert_python_ok , assert_python_failure
4545from test import support
46+ from test .support import import_helper
4647from test .support import os_helper
4748from test .support import socket_helper
4849from test .support import threading_helper
@@ -3924,10 +3925,8 @@ def test_90195(self):
39243925
39253926 def test_111615 (self ):
39263927 # See gh-111615
3927- try :
3928- import multiprocessing as mp
3929- except ImportError : # see gh-113692
3930- raise unittest .SkipTest ('multiprocessing not available, needed for this test' )
3928+ import_helper .import_module ('_multiprocessing' ) # see gh-113692
3929+ mp = import_helper .import_module ('multiprocessing' )
39313930
39323931 config = {
39333932 'version' : 1 ,
You can’t perform that action at this time.
0 commit comments