[Python-checkins] cpython (merge 3.2 -> default): Issue #11855: merge from 3.2

eli.bendersky python-checkins at python.org
Sat Apr 16 14:18:25 CEST 2011


http://hg.python.org/cpython/rev/c49c595e4214
changeset:   69391:c49c595e4214
parent:      69386:49dabc676801
parent:      69390:0f1199858714
user:        Eli Bendersky <eliben at gmail.com>
date:        Sat Apr 16 15:36:26 2011 +0300
summary:
  Issue #11855: merge from 3.2

files:
  Doc/library/urllib.request.rst |  10 +++++-----
  1 files changed, 5 insertions(+), 5 deletions(-)


diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -1113,15 +1113,15 @@
    the  download is interrupted.
 
    The *Content-Length* is treated as a lower bound: if there's more data  to read,
-   urlretrieve reads more data, but if less data is available,  it raises the
-   exception.
+   :func:`urlretrieve` reads more data, but if less data is available,  it raises
+   the exception.
 
    You can still retrieve the downloaded data in this case, it is stored  in the
    :attr:`content` attribute of the exception instance.
 
-   If no *Content-Length* header was supplied, urlretrieve can not check the size
-   of the data it has downloaded, and just returns it.  In this case you just have
-   to assume that the download was successful.
+   If no *Content-Length* header was supplied, :func:`urlretrieve` can not check
+   the size of the data it has downloaded, and just returns it.  In this case
+   you just have to assume that the download was successful.
 
 .. function:: urlcleanup()
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list