summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-08-06 07:52:20 (GMT)
committerGeorg Brandl <georg@python.org>2007-08-06 07:52:20 (GMT)
commite7fe6c3db2c703d6751df85630fc2e9de2e83871 (patch)
tree889ad77bac95291fff5388fe090009c57eec67b1 /Doc
parent0f6d360ac7b2b29ab4216821afa6347451f5390b (diff)
downloadcpython-e7fe6c3db2c703d6751df85630fc2e9de2e83871.zip
cpython-e7fe6c3db2c703d6751df85630fc2e9de2e83871.tar.gz
cpython-e7fe6c3db2c703d6751df85630fc2e9de2e83871.tar.bz2
Patch #1765839: add link to https+proxy urllib2 opener.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/urllib2.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst
index 69ce508..ce10e52 100644
--- a/Doc/howto/urllib2.rst
+++ b/Doc/howto/urllib2.rst
@@ -541,7 +541,9 @@ steps to setting up a `Basic Authentication`_ handler : ::
.. note::
Currently ``urllib2`` *does not* support fetching of ``https``
- locations through a proxy. This can be a problem.
+ locations through a proxy. However, this can be enabled by extending
+ urllib2 as shown in the recipe [#]_.
+
Sockets and Layers
==================
@@ -596,3 +598,6 @@ This document was reviewed and revised by John Lee.
is set to use the proxy, which urllib2 picks up on. In order to test
scripts with a localhost server, I have to prevent urllib2 from using
the proxy.
+.. [#] urllib2 opener for SSL proxy (CONNECT method): `ASPN Cookbook Recipe
+ <http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/456195>`_.
+