]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Reflow paragraph.
authorR David Murray <rdmurray@bitdance.com>
Sun, 28 Apr 2013 15:20:46 +0000 (11:20 -0400)
committerR David Murray <rdmurray@bitdance.com>
Sun, 28 Apr 2013 15:20:46 +0000 (11:20 -0400)
Doc/howto/urllib2.rst

index 0291c684d8cf2d1b1b8e5509f2910fa653f08fe4..d4a0e639c0193ae32a987e21580fa0e09974d45a 100644 (file)
@@ -508,10 +508,10 @@ Proxies
 
 **urllib2** will auto-detect your proxy settings and use those. This is through
 the ``ProxyHandler``, which is part of the normal handler chain when a proxy
-setting is detected.  Normally that's
-a good thing, but there are occasions when it may not be helpful [#]_. One way
-to do this is to setup our own ``ProxyHandler``, with no proxies defined. This
-is done using similar steps to setting up a `Basic Authentication`_ handler : ::
+setting is detected.  Normally that's a good thing, but there are occasions
+when it may not be helpful [#]_. One way to do this is to setup our own
+``ProxyHandler``, with no proxies defined. This is done using similar steps to
+setting up a `Basic Authentication`_ handler : ::
 
     >>> proxy_support = urllib2.ProxyHandler({})
     >>> opener = urllib2.build_opener(proxy_support)