summaryrefslogtreecommitdiffstats
path: root/Lib/urllib
diff options
context:
space:
mode:
authorSenthil Kumaran <skumaran@gatech.edu>2017-04-11 04:08:35 (GMT)
committerGitHub <noreply@github.com>2017-04-11 04:08:35 (GMT)
commit6fab78e9027f9ebd6414995580781b480433e595 (patch)
treed266f4e906c7ddb21e785fa42c87ee077ae7c849 /Lib/urllib
parent6dfcc81f6b1c82a71a1c876e14424fb8b3573447 (diff)
downloadcpython-6fab78e9027f9ebd6414995580781b480433e595.zip
cpython-6fab78e9027f9ebd6414995580781b480433e595.tar.gz
cpython-6fab78e9027f9ebd6414995580781b480433e595.tar.bz2
Remove superfluous comment in urllib.error. (#1076)
Diffstat (limited to 'Lib/urllib')
-rw-r--r--Lib/urllib/error.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/urllib/error.py b/Lib/urllib/error.py
index c5b675d..851515b 100644
--- a/Lib/urllib/error.py
+++ b/Lib/urllib/error.py
@@ -16,10 +16,6 @@ import urllib.response
__all__ = ['URLError', 'HTTPError', 'ContentTooShortError']
-# do these error classes make sense?
-# make sure all of the OSError stuff is overridden. we just want to be
-# subtypes.
-
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__.