/prebuilts/gdb/darwin-x86/lib/python2.7/ |
netrc.py | 1 """An object-oriented interface to .netrc files.""" 7 __all__ = ["netrc", "NetrcParseError"] 11 """Exception raised on syntax errors in the .netrc file.""" 22 class netrc: class in inherits: 26 file = os.path.join(os.environ['HOME'], ".netrc") 28 raise IOError("Could not find .netrc: $HOME is not set") 106 """Dump the class data in the format of a .netrc file.""" 122 print netrc()
|
nntplib.py | 135 # If no login/password was specified, try to get them from ~/.netrc 139 import netrc namespace 140 credentials = netrc.netrc()
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
netrc.py | 1 """An object-oriented interface to .netrc files.""" 7 __all__ = ["netrc", "NetrcParseError"] 11 """Exception raised on syntax errors in the .netrc file.""" 22 class netrc: class in inherits: 26 file = os.path.join(os.environ['HOME'], ".netrc") 28 raise IOError("Could not find .netrc: $HOME is not set") 106 """Dump the class data in the format of a .netrc file.""" 122 print netrc()
|
nntplib.py | 135 # If no login/password was specified, try to get them from ~/.netrc 139 import netrc namespace 140 credentials = netrc.netrc()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
netrc.py | 1 """An object-oriented interface to .netrc files.""" 7 __all__ = ["netrc", "NetrcParseError"] 11 """Exception raised on syntax errors in the .netrc file.""" 22 class netrc: class in inherits: 26 file = os.path.join(os.environ['HOME'], ".netrc") 28 raise IOError("Could not find .netrc: $HOME is not set") 106 """Dump the class data in the format of a .netrc file.""" 122 print netrc()
|
nntplib.py | 135 # If no login/password was specified, try to get them from ~/.netrc 139 import netrc namespace 140 credentials = netrc.netrc()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
netrc.py | 1 """An object-oriented interface to .netrc files.""" 7 __all__ = ["netrc", "NetrcParseError"] 11 """Exception raised on syntax errors in the .netrc file.""" 22 class netrc: class in inherits: 26 file = os.path.join(os.environ['HOME'], ".netrc") 28 raise IOError("Could not find .netrc: $HOME is not set") 106 """Dump the class data in the format of a .netrc file.""" 122 print netrc()
|
nntplib.py | 135 # If no login/password was specified, try to get them from ~/.netrc 139 import netrc namespace 140 credentials = netrc.netrc()
|
/external/owasp/sanitizer/tools/ |
googlecode_upload.py | 171 from netrc import netrc namespace 172 authenticators = netrc().authenticators("code.google.com")
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_netrc.py | 1 import netrc, os, unittest, sys, textwrap namespace 18 return netrc.netrc(temp_filename)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_netrc.py | 1 import netrc, os, unittest, sys, textwrap namespace 18 return netrc.netrc(temp_filename)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_netrc.py | 1 import netrc, os, unittest, sys, textwrap namespace 18 return netrc.netrc(temp_filename)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_netrc.py | 1 import netrc, os, unittest, sys, textwrap namespace 18 return netrc.netrc(temp_filename)
|
/external/curl/src/ |
tool_cfgable.h | 101 bool netrc; member in struct:OperationConfig
|
/external/curl/lib/ |
urldata.h | 520 bool netrc; /* name+password provided by netrc */ member in struct:ConnectBits [all...] |