]> granicus.if.org Git - python/commitdiff
Remove superfluous comment in urllib.error. (#1076)
authorSenthil Kumaran <skumaran@gatech.edu>
Tue, 11 Apr 2017 04:08:35 +0000 (21:08 -0700)
committerGitHub <noreply@github.com>
Tue, 11 Apr 2017 04:08:35 +0000 (21:08 -0700)
Lib/urllib/error.py

index c5b675d16188b85ce122d04c2a3c5c529488905e..851515bc307d625d50b3f61f43ca5807bc7ca6a9 100644 (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__.