summaryrefslogtreecommitdiffstats
path: root/Doc/library/http.client.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2009-07-25 04:24:38 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2009-07-25 04:24:38 (GMT)
commit97f0c6be463bd83764e0e5d76e79f1831ef29df0 (patch)
tree37c1df16f5de614b3d7bc86bfe471f7253f76577 /Doc/library/http.client.rst
parentbe0e177ae52f84e2787f511693d4889d7fc9d5d7 (diff)
downloadcpython-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.rst6
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()