From: Guido van Rossum Date: Fri, 16 May 1997 13:40:41 +0000 (+0000) Subject: Increase the child's sleep time to 5 for slow machines. X-Git-Tag: v1.5a3~540 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9522274205aa93cda20bb79aa6d1ee75e0ba5707;p=python Increase the child's sleep time to 5 for slow machines. --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 6ba9a2d83e..31b84f2c6c 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -127,7 +127,7 @@ try: else: try: # child is client - time.sleep(1) + time.sleep(5) s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) if verbose: print 'child connecting'