(self)
| 1130 | ftp.close() |
| 1131 | |
| 1132 | def testTimeoutDifferentOrder(self): |
| 1133 | ftp = ftplib.FTP(timeout=30) |
| 1134 | ftp.connect(HOST) |
| 1135 | self.assertEqual(ftp.sock.gettimeout(), 30) |
| 1136 | self.evt.wait() |
| 1137 | ftp.close() |
| 1138 | |
| 1139 | def testTimeoutDirectAccess(self): |
| 1140 | ftp = ftplib.FTP() |
nothing calls this directly
no test coverage detected