Remove superfluous comment in urllib.error. (#1076)

This commit is contained in:
Senthil Kumaran 2017-04-10 21:08:35 -07:00 committed by GitHub
parent 6dfcc81f6b
commit 6fab78e902
1 changed files with 0 additions and 4 deletions

View File

@ -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__.