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

Lines Matching refs:netrc

50 __all__ = ["FTP","Netrc"]
883 class Netrc:
884 """Class to parse & provide access to 'netrc' format files.
886 See the netrc(4) man page for information on the file format.
888 WARNING: This class is obsolete -- use module netrc instead.
899 ".netrc")
961 """Return a list of hosts mentioned in the .netrc file."""
1009 # get name of alternate ~/.netrc file:
1017 netrc = Netrc(rcfile)
1024 userid, passwd, acct = netrc.get_account(host)