diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-12-09 21:53:15 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-12-09 21:53:15 (GMT) |
commit | 0342688914108d4f24ca7ecf77b0326ee76641b0 (patch) | |
tree | 5205f340d022ce2d3370606f9cab8738ba4f9d52 | |
parent | 07c34bf19f0dad2d9780e213f462882932b79429 (diff) | |
parent | 50cdd55af9529dee95e71a89741d942d06e3c4b8 (diff) | |
download | cpython-0342688914108d4f24ca7ecf77b0326ee76641b0.zip cpython-0342688914108d4f24ca7ecf77b0326ee76641b0.tar.gz cpython-0342688914108d4f24ca7ecf77b0326ee76641b0.tar.bz2 |
merge from 3.3 - Document reason attribute for urllib.error.HTTPError
-rw-r--r-- | Doc/library/urllib.error.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/urllib.error.rst b/Doc/library/urllib.error.rst index e20db27..9c3fe91 100644 --- a/Doc/library/urllib.error.rst +++ b/Doc/library/urllib.error.rst @@ -41,6 +41,10 @@ The following exceptions are raised by :mod:`urllib.error` as appropriate: to a value found in the dictionary of codes as found in :attr:`http.server.BaseHTTPRequestHandler.responses`. + .. attribute:: reason + + This is usually a string explaining the reason for this error. + .. exception:: ContentTooShortError(msg, content) This exception is raised when the :func:`urlretrieve` function detects that |