merge in the fix for test_ftplib on some bots [reviewed by Georg]
diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py
index 7e8dce6..c48497d 100644
--- a/Lib/test/test_ftplib.py
+++ b/Lib/test/test_ftplib.py
@@ -212,6 +212,11 @@
     def handle_accept(self):
         conn, addr = self.accept()
         self.handler = self.handler(conn)
+        self.close()
+
+    def handle_connect(self):
+        self.close()
+    handle_read = handle_connect
 
     def writable(self):
         return 0