From: Charles-François Natali Date: Mon, 19 Dec 2011 15:12:23 +0000 (+0100) Subject: Issue #13453: Try to increase some socket timeouts to make some buildbots stop X-Git-Tag: v3.2.3rc1~262 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4ce2f364610f5943f1d4e26541d84e0af040da66;p=thirdparty%2FPython%2Fcpython.git Issue #13453: Try to increase some socket timeouts to make some buildbots stop failing. --- diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py index 5b69b0abbcbf..71bc23e615ad 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.