mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-30 16:14:24 +08:00
Use OSError instead of IOError (#9683)
This commit is contained in:
@@ -4,7 +4,7 @@ from urllib.response import addinfourl
|
||||
|
||||
__all__ = ["URLError", "HTTPError", "ContentTooShortError"]
|
||||
|
||||
class URLError(IOError):
|
||||
class URLError(OSError):
|
||||
reason: str | BaseException
|
||||
def __init__(self, reason: str | BaseException, filename: str | None = None) -> None: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user