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 5b69b0a..71bc23e 100644
--- a/Lib/test/test_ftplib.py
+++ b/Lib/test/test_ftplib.py
@@ -767,7 +767,7 @@
     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.