Home
last modified time | relevance | path

Searched refs:HTTPSConnection (Results 1 – 16 of 16) sorted by relevance

/third_party/python/Lib/test/
Dtest_httplib.py1558 self.conn = client.HTTPSConnection(HOST, self.port,
1695 h = client.HTTPSConnection(HOST, TimeoutTest.PORT, timeout=30)
1703 h = client.HTTPSConnection('self-signed.pythontest.net', 443)
1714 h = client.HTTPSConnection('self-signed.pythontest.net', 443,
1727 h = client.HTTPSConnection('www.python.org', 443)
1746 h = client.HTTPSConnection(selfsigned_pythontestdotnet, 443,
1775 h = client.HTTPSConnection('self-signed.pythontest.net', 443, context=context)
1784 h = client.HTTPSConnection('localhost', server.port)
1795 h = client.HTTPSConnection('localhost', server.port, context=context)
1808 h = client.HTTPSConnection('localhost', server.port, context=context)
[all …]
/third_party/python/Doc/library/
Dhttp.client.rst68 .. class:: HTTPSConnection(host, port=None, key_file=None, \
353 8080, we would pass the address of the proxy to the :class:`HTTPSConnection`
358 >>> conn = http.client.HTTPSConnection("localhost", 8080)
542 >>> conn = http.client.HTTPSConnection("www.python.org")
556 >>> conn = http.client.HTTPSConnection("docs.python.org")
568 >>> conn = http.client.HTTPSConnection("www.python.org")
Durllib.request.rst46 describing the various SSL options. See :class:`~http.client.HTTPSConnection`
426 have the same meaning as in :class:`http.client.HTTPSConnection`.
/third_party/python/Lib/http/
Dclient.py1398 class HTTPSConnection(HTTPConnection): class
1409 super(HTTPSConnection, self).__init__(host, port, timeout,
/third_party/python/Lib/xmlrpc/
Dclient.py1381 self._connection = host, http.client.HTTPSConnection(chost,
/third_party/python/Lib/logging/
Dhandlers.py1215 connection = http.client.HTTPSConnection(host, context=self.context)
/third_party/python/Lib/urllib/
Drequest.py1391 return self.do_open(http.client.HTTPSConnection, req,
1991 return http.client.HTTPSConnection(host,
/third_party/python/Misc/NEWS.d/
D3.7.0a3.rst675 Add Configurable *blocksize* to ``HTTPConnection`` and ``HTTPSConnection``
D3.5.0a1.rst1267 In the constructor of http.client.HTTPSConnection, prefer the context's
D3.9.0a1.rst2722 context or if a cert_file is passed to HTTPSConnection.
/third_party/python/Doc/whatsnew/
D3.2.rst1689 :class:`http.client.HTTPSConnection`, :class:`urllib.request.HTTPSHandler`
1712 :class:`~http.client.HTTPSConnection` classes now have a *source_address*
1717 :class:`~http.client.HTTPSConnection`.
D3.4.rst2193 :class:`~http.client.HTTPSConnection` has been removed. HTTP 0.9-style
2349 and :class:`~http.client.HTTPSConnection` changes the meaning of the
D3.7.rst952 :class:`~http.client.HTTPConnection` and :class:`~http.client.HTTPSConnection`
D2.7.rst1311 The :class:`~httplib.HTTPConnection` and :class:`~httplib.HTTPSConnection` classes
D2.6.rst1996 :class:`HTTPSConnection` class constructors. (Added by Facundo
/third_party/python/Misc/
DHISTORY1100 - Issue #22959: In the constructor of http.client.HTTPSConnection, prefer the
11718 order to support the TLS SNI extension. ``HTTPSConnection`` and ``urlopen()``
11776 - Issue #9003: http.client.HTTPSConnection, urllib.request.HTTPSHandler and