Home | History | Annotate | Download | only in Lib

Lines Matching full:acct

84             host, user, passwd, acct, timeout
115 # and user, passwd, acct (for login())
116 def __init__(self, host='', user='', passwd='', acct='',
122 self.login(user, passwd, acct)
378 def login(self, user = '', passwd = '', acct = ''):
382 if not acct: acct = ''
394 if resp[0] == '3': resp = self.sendcmd('ACCT ' + acct)
507 def acct(self, password):
509 cmd = 'ACCT ' + password
648 def __init__(self, host='', user='', passwd='', acct='', keyfile=None,
665 FTP.__init__(self, host, user, passwd, acct, timeout)
667 def login(self, user='', passwd='', acct='', secure=True):
670 return FTP.login(self, user, passwd, acct)
949 host = user = passwd = acct = None
970 acct = w2
981 self.__defacct = acct or self.__defacct
988 acct = acct or oacct
989 self.__hosts[host] = user, passwd, acct
1004 user = passwd = acct = None
1006 user, passwd, acct = self.__hosts[host]
1009 acct = acct or self.__defacct
1010 return user, passwd, acct
1047 userid = passwd = acct = ''
1056 userid, passwd, acct = netrc.get_account(host)
1061 ftp.login(userid, passwd, acct)