summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-04-28 15:30:19 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-04-28 15:30:19 (GMT)
commitd4c1b36c39b792f1b001979ebf2858444a4df095 (patch)
treeb68922d347d6e90a4323edec72939fd7ee41136b /Doc/howto
parent876f08e3ae9de32447c5dfae580693f0aaa1f17a (diff)
parent9330a94467af5b9878ef0fb30da45d964cd735df (diff)
downloadcpython-d4c1b36c39b792f1b001979ebf2858444a4df095.zip
cpython-d4c1b36c39b792f1b001979ebf2858444a4df095.tar.gz
cpython-d4c1b36c39b792f1b001979ebf2858444a4df095.tar.bz2
Merge: Reflow paragraphs.
(I got a merge conflict on this in urllib.request.rst, which makes no sense to me. Hopefully I didn't screw up the previous 3.3 commit.)
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 77ef505..b683ab6 100644
--- a/Doc/howto/urllib2.rst
+++ b/Doc/howto/urllib2.rst
@@ -523,10 +523,10 @@ Proxies
**urllib** 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 = urllib.request.ProxyHandler({})
>>> opener = urllib.request.build_opener(proxy_support)