commit | 9522274205aa93cda20bb79aa6d1ee75e0ba5707 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri May 16 13:40:41 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri May 16 13:40:41 1997 +0000 |
tree | c4a793c6c094b58ec5a0ad43190b7208e9f27737 | |
parent | e6fcd331791f591fc58c2c756e2fc54c61a85fbe [diff] |
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 6ba9a2d..31b84f2 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py
@@ -127,7 +127,7 @@ 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'