[Python-checkins] r56766 - in doctools/trunk: Doc-26/howto/urllib2.rst Doc-3k/howto/urllib2.rst

georg.brandl python-checkins at python.org
Mon Aug 6 10:07:24 CEST 2007


Author: georg.brandl
Date: Mon Aug  6 10:07:23 2007
New Revision: 56766

Modified:
   doctools/trunk/Doc-26/howto/urllib2.rst
   doctools/trunk/Doc-3k/howto/urllib2.rst
Log:
Port rev. 56764.


Modified: doctools/trunk/Doc-26/howto/urllib2.rst
==============================================================================
--- doctools/trunk/Doc-26/howto/urllib2.rst	(original)
+++ doctools/trunk/Doc-26/howto/urllib2.rst	Mon Aug  6 10:07:23 2007
@@ -518,7 +518,9 @@
 .. note::
 
     Currently ``urllib2`` *does not* support fetching of ``https`` locations
-    through a proxy. This can be a problem.
+    through a proxy.  However, this can be enabled by extending urllib2 as
+    shown in the recipe [#]_.
+
 
 Sockets and Layers
 ==================
@@ -571,3 +573,6 @@
        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>`_.
+ 

Modified: doctools/trunk/Doc-3k/howto/urllib2.rst
==============================================================================
--- doctools/trunk/Doc-3k/howto/urllib2.rst	(original)
+++ doctools/trunk/Doc-3k/howto/urllib2.rst	Mon Aug  6 10:07:23 2007
@@ -518,7 +518,9 @@
 .. note::
 
     Currently ``urllib2`` *does not* support fetching of ``https`` locations
-    through a proxy. This can be a problem.
+    through a proxy.  However, this can be enabled by extending urllib2 as
+    shown in the recipe [#]_.
+
 
 Sockets and Layers
 ==================
@@ -571,3 +573,6 @@
        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>`_.
+ 


More information about the Python-checkins mailing list