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

Lines Matching refs:Protocol

8 "HTTP - Hypertext Transfer Protocol", at
17 protocol. All you know is that is has methods read(), readline(),
119 more than one set of global protocol-specific options.
291 """Use HTTP protocol."""
351 raise IOError, ('http protocol error', 0,
385 """Use HTTPS protocol."""
443 raise IOError, ('http protocol error', 0,
459 raise IOError, ('file error', 'proxy support for file protocol currently not implemented')
503 """Use FTP protocol."""
505 raise IOError, ('ftp error', 'proxy support for ftp protocol currently not implemented')
567 raise IOError, ('data error', 'proxy support for data protocol currently not implemented')
1494 # Per-protocol settings
1496 protocol, address = p.split('=', 1)
1500 address = '%s://%s' % (protocol, address)
1501 proxies[protocol] = address