D | ftplib.py | 116 def __init__(self, host='', user='', passwd='', acct='', argument 122 self.login(user, passwd, acct) 378 def login(self, user = '', passwd = '', acct = ''): argument 382 if not acct: acct = '' 394 if resp[0] == '3': resp = self.sendcmd('ACCT ' + acct) 507 def acct(self, password): member in FTP 648 def __init__(self, host='', user='', passwd='', acct='', keyfile=None, argument 665 FTP.__init__(self, host, user, passwd, acct, timeout) 667 def login(self, user='', passwd='', acct='', secure=True): argument 670 return FTP.login(self, user, passwd, acct) [all …]
|