Searched refs:HTTPConnection (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_httplib.py | 104 conn = httplib.HTTPConnection('example.com') 132 conn = httplib.HTTPConnection('example.com') 148 conn = httplib.HTTPConnection('example.com') 161 conn = httplib.HTTPConnection('example.com') 172 conn = httplib.HTTPConnection('example.com') 182 conn = httplib.HTTPConnection('example.com') 220 conn = httplib.HTTPConnection('[2001::]:81') 228 conn = httplib.HTTPConnection('[2001:102A::]') 359 conn = httplib.HTTPConnection('example.com') 512 conn = httplib.HTTPConnection('example.com') [all …]
|
D | test_docxmlrpc.py | 67 self.client = httplib.HTTPConnection("localhost:%d" % PORT)
|
D | test_urllib.py | 44 class FakeHTTPConnection(httplib.HTTPConnection): 59 assert httplib.HTTP._connection_class == httplib.HTTPConnection 64 httplib.HTTP._connection_class = httplib.HTTPConnection
|
D | test_httpservers.py | 86 self.connection = httplib.HTTPConnection('localhost', self.PORT) 189 self.con = httplib.HTTPConnection('localhost', self.PORT)
|
D | test_urllib2.py | 1043 real_class = httplib.HTTPConnection 1045 httplib.HTTPConnection = test_urllib.fakehttp(response1) 1053 httplib.HTTPConnection.request = request
|
D | test_xmlrpc.py | 549 conn = httplib.HTTPConnection(ADDR, PORT) 661 conn = httplib.HTTPConnection(ADDR, PORT)
|
/external/python/cpython2/Doc/library/ |
D | httplib.rst | 46 .. class:: HTTPConnection(host[, port[, strict[, timeout[, source_address]]]]) 48 An :class:`HTTPConnection` instance represents one transaction with an HTTP 64 >>> h1 = httplib.HTTPConnection('www.cwi.nl') 65 >>> h2 = httplib.HTTPConnection('www.cwi.nl:80') 66 >>> h3 = httplib.HTTPConnection('www.cwi.nl', 80) 67 >>> h3 = httplib.HTTPConnection('www.cwi.nl', 80, timeout=10) 80 A subclass of :class:`HTTPConnection` that uses SSL for communication with 429 HTTPConnection Objects 432 :class:`HTTPConnection` instances have the following methods: 435 .. method:: HTTPConnection.request(method, url[, body[, headers]]) [all …]
|
D | xmlrpclib.rst | 596 h = httplib.HTTPConnection(self.proxy)
|
/external/python/cpython2/Lib/ |
D | httplib.py | 710 class HTTPConnection: class 1146 _connection_class = HTTPConnection 1234 class HTTPSConnection(HTTPConnection): 1242 HTTPConnection.__init__(self, host, port, strict, timeout, 1255 HTTPConnection.connect(self)
|
D | xmlrpclib.py | 1389 self._connection = host, httplib.HTTPConnection(chost)
|
D | urllib2.py | 1228 return self.do_open(httplib.HTTPConnection, req)
|
/external/libmojo/third_party/catapult/devil/devil/android/ |
D | ports.py | 160 with contextlib.closing(httplib.HTTPConnection(
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | ports.py | 160 with contextlib.closing(httplib.HTTPConnection(
|
/external/autotest/server/hosts/ |
D | rpc_server_tracker.py | 339 conn = httplib.HTTPConnection(host, timeout=self.timeout)
|
/external/autotest/server/cros/ap_configurators/ |
D | pyauto_utils.py | 212 conn = httplib.HTTPConnection(parsed.netloc)
|
/external/python/cpython2/Misc/ |
D | NEWS | 978 - Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The port 998 - Issue #15267: HTTPConnection.request() now is compatibile with old-style 1271 - Issue #23539: If body is None, http.client.HTTPConnection.request now sets 1384 - Issue #21032: Fixed socket leak if HTTPConnection.getresponse() fails. 2100 http.client.HTTPConnection.set_tunnel() from Python 3. Patch by Nikolaus 5821 - Issue #5542: Remove special logic that closes HTTPConnection socket on EPIPE. 7168 - Issue #3972: ``httplib.HTTPConnection`` now accepts an optional source_address 7897 ``httplib.HTTPConnection.send``. Patch by Kirk McDonald. 8677 - httplib.HTTPConnection.putheader() now accepts an arbitrary number of values 11272 called with a timeout, and use it from httplib (whose HTTPConnection [all …]
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 1296 The :class:`~httplib.HTTPConnection` and :class:`~httplib.HTTPSConnection` classes
|
D | 2.6.rst | 1991 seconds, was added to the :class:`httplib.HTTPConnection` and
|