diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2009-07-25 04:24:38 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2009-07-25 04:24:38 (GMT) |
commit | 97f0c6be463bd83764e0e5d76e79f1831ef29df0 (patch) | |
tree | 37c1df16f5de614b3d7bc86bfe471f7253f76577 /Doc/library/http.client.rst | |
parent | be0e177ae52f84e2787f511693d4889d7fc9d5d7 (diff) | |
download | cpython-97f0c6be463bd83764e0e5d76e79f1831ef29df0.zip cpython-97f0c6be463bd83764e0e5d76e79f1831ef29df0.tar.gz cpython-97f0c6be463bd83764e0e5d76e79f1831ef29df0.tar.bz2 |
Fixed Issue1424152 in Py3k: urllib2 fails with HTTPS over Proxy.
Diffstat (limited to 'Doc/library/http.client.rst')
-rw-r--r-- | Doc/library/http.client.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index 3632242..3d37c1b 100644 --- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -386,6 +386,12 @@ HTTPConnection Objects .. versionadded:: 2.7 +.. method:: HTTPConnection.set_tunnel(host, port=None) + + Set the host and the port for HTTP Connect Tunnelling. Normally used when it + is required to a HTTPS Connection through a proxy server. + + .. versionadded:: 3.1 .. method:: HTTPConnection.connect() |