Lines Matching refs:acct
109 def __init__(self, host='', user='', passwd='', acct='', argument
123 self.login(user, passwd, acct)
395 def login(self, user = '', passwd = '', acct = ''): argument
401 if not acct:
402 acct = ''
416 resp = self.sendcmd('ACCT ' + acct)
542 def acct(self, password): member in FTP
718 def __init__(self, host='', user='', passwd='', acct='', argument
740 super().__init__(host, user, passwd, acct,
743 def login(self, user='', passwd='', acct='', secure=True): argument
746 return super().login(user, passwd, acct)
950 userid = passwd = acct = ''
959 userid, acct, passwd = netrcobj.authenticators(host)
964 ftp.login(userid, passwd, acct)