18
18
from test .support import os_helper
19
19
from test .support import socket_helper
20
20
from test .support import wait_process
21
- from test .support import hashlib_helper
22
21
23
22
if sys .platform == 'win32' :
24
23
raise unittest .SkipTest ('UNIX only' )
@@ -1894,7 +1893,6 @@ async def test_fork_not_share_event_loop(self):
1894
1893
self .assertNotEqual (child_loop , id (loop ))
1895
1894
wait_process (pid , exitcode = 0 )
1896
1895
1897
- @hashlib_helper .requires_hashdigest ('md5' )
1898
1896
def test_fork_signal_handling (self ):
1899
1897
# Sending signal to the forked process should not affect the parent
1900
1898
# process
@@ -1932,7 +1930,6 @@ async def func():
1932
1930
self .assertFalse (parent_handled .is_set ())
1933
1931
self .assertTrue (child_handled .is_set ())
1934
1932
1935
- @hashlib_helper .requires_hashdigest ('md5' )
1936
1933
def test_fork_asyncio_run (self ):
1937
1934
ctx = multiprocessing .get_context ('fork' )
1938
1935
manager = ctx .Manager ()
@@ -1949,7 +1946,6 @@ async def child_main():
1949
1946
1950
1947
self .assertEqual (result .value , 42 )
1951
1948
1952
- @hashlib_helper .requires_hashdigest ('md5' )
1953
1949
def test_fork_asyncio_subprocess (self ):
1954
1950
ctx = multiprocessing .get_context ('fork' )
1955
1951
manager = ctx .Manager ()
0 commit comments