summaryrefslogtreecommitdiff
path: root/Lib/urllib/error.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-25 16:47:37 +0200
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-25 16:47:37 +0200
commit45d1bc39881473d6fec76c4627070ac0b89d4b4c (patch)
treeffa31c1c94f04716c23c5a877e085151abfbcf8b /Lib/urllib/error.py
parent5d30ade43e4a2d711483f3326b7f40865ccbc71e (diff)
downloadcpython-45d1bc39881473d6fec76c4627070ac0b89d4b4c.tar.gz
Replace IOError with OSError (#16715)
Diffstat (limited to 'Lib/urllib/error.py')
-rw-r--r--Lib/urllib/error.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/urllib/error.py b/Lib/urllib/error.py
index 237ed6b9bb..45b7169793 100644
--- a/Lib/urllib/error.py
+++ b/Lib/urllib/error.py
@@ -1,6 +1,6 @@
"""Exception classes raised by urllib.
-The base exception class is URLError, which inherits from IOError. It
+The base exception class is URLError, which inherits from OSError. It
doesn't define any behavior of its own, but is the base class for all
exceptions defined in this package.
@@ -17,11 +17,11 @@ __all__ = ['URLError', 'HTTPError', 'ContentTooShortError']
# do these error classes make sense?
-# make sure all of the IOError stuff is overridden. we just want to be
+# make sure all of the OSError stuff is overridden. we just want to be
# subtypes.
-class URLError(IOError):
- # URLError is a sub-type of IOError, but it doesn't share any of
+class URLError(OSError):
+ # URLError is a sub-type of OSError, but it doesn't share any of
# the implementation. need to override __init__ and __str__.
# It sets self.args for compatibility with other EnvironmentError
# subclasses, but args doesn't have the typical format with errno in