Searched refs:HTTPSConnection (Results 1 – 16 of 16) sorted by relevance
/third_party/python/Lib/test/ |
D | test_httplib.py | 1558 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/ |
D | http.client.rst | 68 .. 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")
|
D | urllib.request.rst | 46 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/ |
D | client.py | 1398 class HTTPSConnection(HTTPConnection): class 1409 super(HTTPSConnection, self).__init__(host, port, timeout,
|
/third_party/python/Lib/xmlrpc/ |
D | client.py | 1381 self._connection = host, http.client.HTTPSConnection(chost,
|
/third_party/python/Lib/logging/ |
D | handlers.py | 1215 connection = http.client.HTTPSConnection(host, context=self.context)
|
/third_party/python/Lib/urllib/ |
D | request.py | 1391 return self.do_open(http.client.HTTPSConnection, req, 1991 return http.client.HTTPSConnection(host,
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0a3.rst | 675 Add Configurable *blocksize* to ``HTTPConnection`` and ``HTTPSConnection``
|
D | 3.5.0a1.rst | 1267 In the constructor of http.client.HTTPSConnection, prefer the context's
|
D | 3.9.0a1.rst | 2722 context or if a cert_file is passed to HTTPSConnection.
|
/third_party/python/Doc/whatsnew/ |
D | 3.2.rst | 1689 :class:`http.client.HTTPSConnection`, :class:`urllib.request.HTTPSHandler` 1712 :class:`~http.client.HTTPSConnection` classes now have a *source_address* 1717 :class:`~http.client.HTTPSConnection`.
|
D | 3.4.rst | 2193 :class:`~http.client.HTTPSConnection` has been removed. HTTP 0.9-style 2349 and :class:`~http.client.HTTPSConnection` changes the meaning of the
|
D | 3.7.rst | 952 :class:`~http.client.HTTPConnection` and :class:`~http.client.HTTPSConnection`
|
D | 2.7.rst | 1311 The :class:`~httplib.HTTPConnection` and :class:`~httplib.HTTPSConnection` classes
|
D | 2.6.rst | 1996 :class:`HTTPSConnection` class constructors. (Added by Facundo
|
/third_party/python/Misc/ |
D | HISTORY | 1100 - 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
|