Lines Matching refs:acct
112 def __init__(self, host='', user='', passwd='', acct='', argument
119 self.login(user, passwd, acct)
401 def login(self, user = '', passwd = '', acct = ''): argument
407 if not acct:
408 acct = ''
422 resp = self.sendcmd('ACCT ' + acct)
548 def acct(self, password): member in FTP
724 def __init__(self, host='', user='', passwd='', acct='', keyfile=None, argument
745 FTP.__init__(self, host, user, passwd, acct, timeout, source_address)
747 def login(self, user='', passwd='', acct='', secure=True): argument
750 return FTP.login(self, user, passwd, acct)
958 userid = passwd = acct = ''
967 userid, acct, passwd = netrcobj.authenticators(host)
972 ftp.login(userid, passwd, acct)