Home | History | Annotate | Download | only in python2.7

Lines Matching defs:acct

82             host, user, passwd, acct, timeout
112 # and user, passwd, acct (for login())
113 def __init__(self, host='', user='', passwd='', acct='',
119 self.login(user, passwd, acct)
373 def login(self, user = '', passwd = '', acct = ''):
377 if not acct: acct = ''
389 if resp[0] == '3': resp = self.sendcmd('ACCT ' + acct)
498 def acct(self, password):
500 cmd = 'ACCT ' + password
634 def __init__(self, host='', user='', passwd='', acct='', keyfile=None,
639 FTP.__init__(self, host, user, passwd, acct, timeout)
641 def login(self, user='', passwd='', acct='', secure=True):
644 return FTP.login(self, user, passwd, acct)
917 host = user = passwd = acct = None
938 acct = w2
949 self.__defacct = acct or self.__defacct
956 acct = acct or oacct
957 self.__hosts[host] = user, passwd, acct
972 user = passwd = acct = None
974 user, passwd, acct = self.__hosts[host]
977 acct = acct or self.__defacct
978 return user, passwd, acct
1015 userid = passwd = acct = ''
1024 userid, passwd, acct = netrc.get_account(host)
1029 ftp.login(userid, passwd, acct)