diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-12 15:53:43 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-12 15:53:43 (GMT) |
commit | 5574c3012da66b3c5d300f00e19baa06688d0c51 (patch) | |
tree | 98b94d14fa01928e7c86616b172a9f56ba0942a3 /Doc/library/urllib.error.rst | |
parent | 195e702831a3eb9b7c55b30aca24c5d741fd204b (diff) | |
download | cpython-5574c3012da66b3c5d300f00e19baa06688d0c51.zip cpython-5574c3012da66b3c5d300f00e19baa06688d0c51.tar.gz cpython-5574c3012da66b3c5d300f00e19baa06688d0c51.tar.bz2 |
Replace mentions of socket.error.
Diffstat (limited to 'Doc/library/urllib.error.rst')
-rw-r--r-- | Doc/library/urllib.error.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/urllib.error.rst b/Doc/library/urllib.error.rst index 282329f..793d3e2 100644 --- a/Doc/library/urllib.error.rst +++ b/Doc/library/urllib.error.rst @@ -21,8 +21,7 @@ The following exceptions are raised by :mod:`urllib.error` as appropriate: .. attribute:: reason The reason for this error. It can be a message string or another - exception instance (:exc:`socket.error` for remote URLs, :exc:`OSError` - for local URLs). + exception instance such as :exc:`OSError`. .. exception:: HTTPError |