1818from test .support import os_helper
1919from test .support import socket_helper
2020from test .support import wait_process
21- from test .support import hashlib_helper
2221
2322if sys .platform == 'win32' :
2423 raise unittest .SkipTest ('UNIX only' )
@@ -1894,7 +1893,6 @@ async def test_fork_not_share_event_loop(self):
18941893 self .assertNotEqual (child_loop , id (loop ))
18951894 wait_process (pid , exitcode = 0 )
18961895
1897- @hashlib_helper .requires_hashdigest ('md5' )
18981896 def test_fork_signal_handling (self ):
18991897 # Sending signal to the forked process should not affect the parent
19001898 # process
@@ -1932,7 +1930,6 @@ async def func():
19321930 self .assertFalse (parent_handled .is_set ())
19331931 self .assertTrue (child_handled .is_set ())
19341932
1935- @hashlib_helper .requires_hashdigest ('md5' )
19361933 def test_fork_asyncio_run (self ):
19371934 ctx = multiprocessing .get_context ('fork' )
19381935 manager = ctx .Manager ()
@@ -1949,7 +1946,6 @@ async def child_main():
19491946
19501947 self .assertEqual (result .value , 42 )
19511948
1952- @hashlib_helper .requires_hashdigest ('md5' )
19531949 def test_fork_asyncio_subprocess (self ):
19541950 ctx = multiprocessing .get_context ('fork' )
19551951 manager = ctx .Manager ()
0 commit comments