comparison env/lib/python3.9/site-packages/attr/exceptions.pyi @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000 (2021-03-22)
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 from typing import Any
2
3 class FrozenError(AttributeError):
4 msg: str = ...
5
6 class FrozenInstanceError(FrozenError): ...
7 class FrozenAttributeError(FrozenError): ...
8 class AttrsAttributeNotFoundError(ValueError): ...
9 class NotAnAttrsClassError(ValueError): ...
10 class DefaultAlreadySetError(RuntimeError): ...
11 class UnannotatedAttributeError(RuntimeError): ...
12 class PythonTooOldError(RuntimeError): ...
13
14 class NotCallableError(TypeError):
15 msg: str = ...
16 value: Any = ...
17 def __init__(self, msg: str, value: Any) -> None: ...