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