http://hg.python.org/cpython/rev/d7455cceb917 changeset: 79144:d7455cceb917 branch: 3.2 parent: 79141:74b4c8c2894f user: Ezio Melotti <ezio.melotti at gmail.com> date: Mon Sep 24 17:07:39 2012 +0300 summary: #16017: capitalize URLs. files: Doc/tutorial/stdlib.rst | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst --- a/Doc/tutorial/stdlib.rst +++ b/Doc/tutorial/stdlib.rst @@ -148,7 +148,7 @@ 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'): -- Repository URL: http://hg.python.org/cpython