summaryrefslogtreecommitdiff
path: root/Doc/howto/urllib2.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-04-28 11:24:35 -0400
committerR David Murray <rdmurray@bitdance.com>2013-04-28 11:24:35 -0400
commit9330a94467af5b9878ef0fb30da45d964cd735df (patch)
tree18273c494c46494493fd36eb0ea52784b83520a1 /Doc/howto/urllib2.rst
parent5aea37ad1dad0841ab6b5408156cff592fbfa310 (diff)
downloadcpython-git-9330a94467af5b9878ef0fb30da45d964cd735df.tar.gz
Reflow paragraphs.
I know one of them looks worse, but now it is <80 chars and matches the 2.7 text.
Diffstat (limited to 'Doc/howto/urllib2.rst')
-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 77ef505fef..b683ab684e 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)