(self, user, passwd, host, port, dirs, timeout)
| 1561 | raise |
| 1562 | |
| 1563 | def connect_ftp(self, user, passwd, host, port, dirs, timeout): |
| 1564 | return ftpwrapper(user, passwd, host, port, dirs, timeout, |
| 1565 | persistent=False) |
| 1566 | |
| 1567 | class CacheFTPHandler(FTPHandler): |
| 1568 | # XXX would be nice to have pluggable cache strategies |