summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ftplib.py
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-12-19 15:12:23 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-12-19 15:12:23 (GMT)
commit4ce2f364610f5943f1d4e26541d84e0af040da66 (patch)
tree766b7c1221d956b067b4a4ff750e44d9bcadc756 /Lib/test/test_ftplib.py
parentd208416a4033c1d8e10ee70e1aa74e6d3108c7d6 (diff)
downloadcpython-4ce2f364610f5943f1d4e26541d84e0af040da66.zip
cpython-4ce2f364610f5943f1d4e26541d84e0af040da66.tar.gz
cpython-4ce2f364610f5943f1d4e26541d84e0af040da66.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 5b69b0a..71bc23e 100644
--- a/Lib/test/test_ftplib.py
+++ b/Lib/test/test_ftplib.py
@@ -767,7 +767,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 = support.bind_port(self.sock)
threading.Thread(target=self.server, args=(self.evt,self.sock)).start()
# Wait for the server to be ready.