Home
last modified time | relevance | path

Searched refs:HTTPConnection (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_httplib.py104 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 …]
Dtest_docxmlrpc.py67 self.client = httplib.HTTPConnection("localhost:%d" % PORT)
Dtest_urllib.py44 class FakeHTTPConnection(httplib.HTTPConnection):
59 assert httplib.HTTP._connection_class == httplib.HTTPConnection
64 httplib.HTTP._connection_class = httplib.HTTPConnection
Dtest_httpservers.py86 self.connection = httplib.HTTPConnection('localhost', self.PORT)
189 self.con = httplib.HTTPConnection('localhost', self.PORT)
Dtest_urllib2.py1043 real_class = httplib.HTTPConnection
1045 httplib.HTTPConnection = test_urllib.fakehttp(response1)
1053 httplib.HTTPConnection.request = request
Dtest_xmlrpc.py549 conn = httplib.HTTPConnection(ADDR, PORT)
661 conn = httplib.HTTPConnection(ADDR, PORT)
/external/python/cpython2/Doc/library/
Dhttplib.rst46 .. 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 …]
Dxmlrpclib.rst596 h = httplib.HTTPConnection(self.proxy)
/external/python/cpython2/Lib/
Dhttplib.py710 class HTTPConnection: class
1146 _connection_class = HTTPConnection
1234 class HTTPSConnection(HTTPConnection):
1242 HTTPConnection.__init__(self, host, port, strict, timeout,
1255 HTTPConnection.connect(self)
Dxmlrpclib.py1389 self._connection = host, httplib.HTTPConnection(chost)
Durllib2.py1228 return self.do_open(httplib.HTTPConnection, req)
/external/libmojo/third_party/catapult/devil/devil/android/
Dports.py160 with contextlib.closing(httplib.HTTPConnection(
/external/chromium-trace/catapult/devil/devil/android/
Dports.py160 with contextlib.closing(httplib.HTTPConnection(
/external/autotest/server/hosts/
Drpc_server_tracker.py339 conn = httplib.HTTPConnection(host, timeout=self.timeout)
/external/autotest/server/cros/ap_configurators/
Dpyauto_utils.py212 conn = httplib.HTTPConnection(parsed.netloc)
/external/python/cpython2/Misc/
DNEWS978 - 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/
D2.7.rst1296 The :class:`~httplib.HTTPConnection` and :class:`~httplib.HTTPSConnection` classes
D2.6.rst1991 seconds, was added to the :class:`httplib.HTTPConnection` and