summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-09-24 14:08:05 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-09-24 14:08:05 (GMT)
commit5799a2d8c3c57b131004a948fca6af3e42547cf6 (patch)
treee6d5b39fda8f1426c913e038857b86e1ab498832
parent0ce22259df1112a5357e25e725125d7e1da3d2e7 (diff)
parentc926c59d80cc7068bda210f5d47af898e39a314b (diff)
downloadcpython-5799a2d8c3c57b131004a948fca6af3e42547cf6.zip
cpython-5799a2d8c3c57b131004a948fca6af3e42547cf6.tar.gz
cpython-5799a2d8c3c57b131004a948fca6af3e42547cf6.tar.bz2
#16017: merge with 3.2.
-rw-r--r--Doc/tutorial/stdlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst
index 500ca7f..b5771f6 100644
--- a/Doc/tutorial/stdlib.rst
+++ b/Doc/tutorial/stdlib.rst
@@ -148,7 +148,7 @@ Internet Access
There are a number of modules for accessing the internet and processing internet
protocols. Two of the simplest are :mod:`urllib.request` for retrieving data
-from urls and :mod:`smtplib` for sending mail::
+from URLs and :mod:`smtplib` for sending mail::
>>> from urllib.request import urlopen
>>> for line in urlopen('http://tycho.usno.navy.mil/cgi-bin/timer.pl'):