This commit is contained in:
Trinh Anh Ngoc
2023-05-18 21:49:05 +07:00
parent a546490a77
commit 54ea622c22
9 changed files with 0 additions and 28 deletions

View File

@@ -13,14 +13,12 @@ _sha1_re: Pattern
def generate_key(salt: Any = ...) -> str: ...
class ModificationTrackingDict(CallbackDict):
__slots__ = ("modified",)
modified: bool
def __init__(self, *args, **kwargs): ...
def copy(self: _ModificationTrackingDictT) -> _ModificationTrackingDictT: ...
def __copy__(self: _ModificationTrackingDictT) -> _ModificationTrackingDictT: ...
class Session(ModificationTrackingDict):
__slots__ = ("modified", "sid", "new")
sid: str
new: bool
def __init__(self, data, sid, new: bool = ...): ...