summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-04-28 15:20:46 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-04-28 15:20:46 (GMT)
commit6596041464f0e5b4653736633232ac6fef6c864a (patch)
tree614270f9f500b0691682624c7b0cc2f5e192a002 /Doc/howto
parent806c1c939d6d4ba6e71c7e72c84e991b70612f2b (diff)
downloadcpython-6596041464f0e5b4653736633232ac6fef6c864a.zip
cpython-6596041464f0e5b4653736633232ac6fef6c864a.tar.gz
cpython-6596041464f0e5b4653736633232ac6fef6c864a.tar.bz2
Reflow paragraph.
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/urllib2.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst
index 0291c68..d4a0e63 100644
--- a/Doc/howto/urllib2.rst
+++ b/Doc/howto/urllib2.rst
@@ -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)