Fix missing urllib.error ContentTooShortError stub.

This commit is contained in:
Tim Abbott
2016-01-26 15:13:45 -08:00
committed by Tim Abbott
parent f036fd05f3
commit 70eb00d3f2

View File

@@ -1,6 +1,5 @@
# Stubs for urllib.error
# NOTE: These are incomplete!
class URLError(IOError): ...
class HTTPError(URLError): ...
class ContentTooShortError(URLError): ...