fix inheritance for _interpreters.NotShareableError (#12880)

related to https://github.com/python/typeshed/issues/3968
This commit is contained in:
Stephen Morton
2024-10-23 06:58:46 -07:00
committed by GitHub
parent d7aa851552
commit 4c38695dfd

View File

@@ -7,7 +7,7 @@ _Configs: TypeAlias = Literal["default", "isolated", "legacy", "empty", ""]
class InterpreterError(Exception): ...
class InterpreterNotFoundError(InterpreterError): ...
class NotShareableError(Exception): ...
class NotShareableError(ValueError): ...
class CrossInterpreterBufferView:
def __buffer__(self, flags: int, /) -> memoryview: ...