Lines Matching full:acct
79 host, user, passwd, acct, timeout
111 # and user, passwd, acct (for login())
112 def __init__(self, host='', user='', passwd='', acct='',
119 self.login(user, passwd, acct)
399 def login(self, user = '', passwd = '', acct = ''):
405 if not acct:
406 acct = ''
420 resp = self.sendcmd('ACCT ' + acct)
546 def acct(self, password):
548 cmd = 'ACCT ' + password
722 def __init__(self, host='', user='', passwd='', acct='', keyfile=None,
743 FTP.__init__(self, host, user, passwd, acct, timeout, source_address)
745 def login(self, user='', passwd='', acct='', secure=True):
748 return FTP.login(self, user, passwd, acct)
956 userid = passwd = acct = ''
965 userid, acct, passwd = netrcobj.authenticators(host)
970 ftp.login(userid, passwd, acct)