summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ftplib.py
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-12-19 15:11:04 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-12-19 15:11:04 (GMT)
commit3b8180739dc93638185f6815139f1c5b15c12302 (patch)
treedf21d47c379075968bd25633ae807ecb4dfbf541 /Lib/test/test_ftplib.py
parent99cff3f1825e70027b2fa170fdc4723c57723b5d (diff)
downloadcpython-3b8180739dc93638185f6815139f1c5b15c12302.zip
cpython-3b8180739dc93638185f6815139f1c5b15c12302.tar.gz
cpython-3b8180739dc93638185f6815139f1c5b15c12302.tar.bz2
Issue #13453: Try to increase some socket timeouts to make some buildbots stop
failing.
Diffstat (limited to 'Lib/test/test_ftplib.py')
-rw-r--r--Lib/test/test_ftplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py
index 9199582..c82e8a6 100644
--- a/Lib/test/test_ftplib.py
+++ b/Lib/test/test_ftplib.py
@@ -667,7 +667,7 @@ class TestTimeouts(TestCase):
def setUp(self):
self.evt = threading.Event()
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- self.sock.settimeout(3)
+ self.sock.settimeout(10)
self.port = test_support.bind_port(self.sock)
threading.Thread(target=self.server, args=(self.evt,self.sock)).start()
# Wait for the server to be ready.