diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-24 14:07:39 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-24 14:07:39 (GMT) |
commit | c926c59d80cc7068bda210f5d47af898e39a314b (patch) | |
tree | 418de3db15f79c5449cd563f0b85136ce4fe08d2 /Doc/tutorial/stdlib.rst | |
parent | 4f24af065ddafef6f0f20a481e7abfacbc303fcc (diff) | |
download | cpython-c926c59d80cc7068bda210f5d47af898e39a314b.zip cpython-c926c59d80cc7068bda210f5d47af898e39a314b.tar.gz cpython-c926c59d80cc7068bda210f5d47af898e39a314b.tar.bz2 |
#16017: capitalize URLs.
Diffstat (limited to 'Doc/tutorial/stdlib.rst')
-rw-r--r-- | Doc/tutorial/stdlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index 9729743..128e6a6 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'): |