##// END OF EJS Templates
narrow: write the narrow spec in a transaction during share...
narrow: write the narrow spec in a transaction during share It will be simpler if all write happens within transaction.

File last commit:

r50538:e1c586b9 default
r51086:99faa396 default
Show More
exceptions.pyi
17 lines | 539 B | text/x-python | PythonLexer
from typing import Any
class FrozenError(AttributeError):
msg: str = ...
class FrozenInstanceError(FrozenError): ...
class FrozenAttributeError(FrozenError): ...
class AttrsAttributeNotFoundError(ValueError): ...
class NotAnAttrsClassError(ValueError): ...
class DefaultAlreadySetError(RuntimeError): ...
class UnannotatedAttributeError(RuntimeError): ...
class PythonTooOldError(RuntimeError): ...
class NotCallableError(TypeError):
msg: str = ...
value: Any = ...
def __init__(self, msg: str, value: Any) -> None: ...