Lines Matching refs:acct
116 def __init__(self, host='', user='', passwd='', acct='', argument
122 self.login(user, passwd, acct)
380 def login(self, user = '', passwd = '', acct = ''): argument
384 if not acct: acct = ''
396 if resp[0] == '3': resp = self.sendcmd('ACCT ' + acct)
519 def acct(self, password): member in FTP
660 def __init__(self, host='', user='', passwd='', acct='', keyfile=None, argument
677 FTP.__init__(self, host, user, passwd, acct, timeout)
679 def login(self, user='', passwd='', acct='', secure=True): argument
682 return FTP.login(self, user, passwd, acct)
961 host = user = passwd = acct = None
982 acct = w2
993 self.__defacct = acct or self.__defacct
1000 acct = acct or oacct
1001 self.__hosts[host] = user, passwd, acct
1016 user = passwd = acct = None
1018 user, passwd, acct = self.__hosts[host]
1021 acct = acct or self.__defacct
1022 return user, passwd, acct
1059 userid = passwd = acct = ''
1068 userid, passwd, acct = netrc.get_account(host)
1073 ftp.login(userid, passwd, acct)