summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-16 13:40:41 (GMT)
committerGuido van Rossum <guido@python.org>1997-05-16 13:40:41 (GMT)
commit9522274205aa93cda20bb79aa6d1ee75e0ba5707 (patch)
treec4a793c6c094b58ec5a0ad43190b7208e9f27737 /Lib/test/test_socket.py
parente6fcd331791f591fc58c2c756e2fc54c61a85fbe (diff)
downloadcpython-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.py2
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'