From 9522274205aa93cda20bb79aa6d1ee75e0ba5707 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 16 May 1997 13:40:41 +0000 Subject: [PATCH] Increase the child's sleep time to 5 for slow machines. --- Lib/test/test_socket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 6ba9a2d83e5..31b84f2c6c0 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'