Use OSError instead of IOError (#9683)

This commit is contained in:
Nikita Sobolev
2023-02-06 21:56:32 +03:00
committed by GitHub
parent c96079f0df
commit f7cb7f33b2
6 changed files with 7 additions and 7 deletions

View File

@@ -14,8 +14,8 @@ from docutils import TransformSpec
__docformat__: str
class InputError(IOError): ...
class OutputError(IOError): ...
class InputError(OSError): ...
class OutputError(OSError): ...
def check_encoding(stream: Any, encoding: str) -> bool | None: ...
def error_string(err: BaseException) -> str: ...