[Python-checkins] cpython (3.2): #16017: capitalize URLs.

ezio.melotti python-checkins at python.org
Mon Sep 24 16:08:29 CEST 2012


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


More information about the Python-checkins mailing list