Update stubs

This commit is contained in:
Trinh Anh Ngoc
2022-10-16 23:17:14 +07:00
parent 10f346167a
commit 133ac5de99

View File

@@ -16,8 +16,12 @@ class lazy_classproperty(lazy_property[_T]):
def __get__(self, obj, cls) -> _T: ... def __get__(self, obj, cls) -> _T: ...
def conditional(condition, decorator): ... def conditional(condition, decorator): ...
def synchronized(lock_attr: str = ...): ... def filter_kwargs(func, kwargs) -> dict: ...
def frame_codeinfo(fframe, back: int = ...): ... def synchronized(lock_attr: str = ...) -> Callable[[_T], _T]: ...
locked: Callable[[_T], _T]
def frame_codeinfo(fframe, back: int = ...) -> tuple[str | None, str | None]: ...
def compose(a: Callable[..., _T], b: Callable) -> Callable[..., _T]: ... def compose(a: Callable[..., _T], b: Callable) -> Callable[..., _T]: ...
class _ClassProperty(property, Generic[_T]): class _ClassProperty(property, Generic[_T]):