diff options
author | Guido van Rossum <guido@python.org> | 1997-05-16 13:40:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-16 13:40:41 (GMT) |
commit | 9522274205aa93cda20bb79aa6d1ee75e0ba5707 (patch) | |
tree | c4a793c6c094b58ec5a0ad43190b7208e9f27737 /Lib/test/test_socket.py | |
parent | e6fcd331791f591fc58c2c756e2fc54c61a85fbe (diff) | |
download | cpython-9522274205aa93cda20bb79aa6d1ee75e0ba5707.zip cpython-9522274205aa93cda20bb79aa6d1ee75e0ba5707.tar.gz cpython-9522274205aa93cda20bb79aa6d1ee75e0ba5707.tar.bz2 |
Increase the child's sleep time to 5 for slow machines.
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r-- | Lib/test/test_socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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' |