Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: cachetools.__wrapped__ attribute typing for cached functions #13701

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions stubs/cachetools/@tests/test_cases/check_cachetools_wrapped.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from typing import Any

from cachetools import LRUCache, cached

cache: LRUCache[str, Any] = LRUCache(maxsize=128)


@cached(cache)
def example_function(x: int) -> str:
return str(x)


original_function = example_function.__wrapped__
result = original_function(42)
11 changes: 7 additions & 4 deletions stubs/cachetools/cachetools/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
from _typeshed import IdentityFunction, Unused
from _typeshed import Unused
from collections.abc import Callable, Iterator, MutableMapping, Sequence
from contextlib import AbstractContextManager
from functools import _Wrapped
from typing import Any, TypeVar, overload
from typing_extensions import deprecated
from typing_extensions import ParamSpec, deprecated

__all__ = ("Cache", "FIFOCache", "LFUCache", "LRUCache", "MRUCache", "RRCache", "TLRUCache", "TTLCache", "cached", "cachedmethod")
__version__: str

_KT = TypeVar("_KT")
_VT = TypeVar("_VT")
_T = TypeVar("_T")
_R = TypeVar("_R")
_P = ParamSpec("_P")

class Cache(MutableMapping[_KT, _VT]):
@overload
Expand Down Expand Up @@ -104,9 +107,9 @@ def cached(
key: Callable[..., _KT] = ...,
lock: AbstractContextManager[Any] | None = None,
info: bool = False,
) -> IdentityFunction: ...
) -> Callable[[Callable[_P, _R]], _Wrapped[_P, _R, _P, _R]]: ...
def cachedmethod(
cache: Callable[[Any], MutableMapping[_KT, Any] | None],
key: Callable[..., _KT] = ...,
lock: Callable[[Any], AbstractContextManager[Any]] | None = None,
) -> IdentityFunction: ...
) -> Callable[[Callable[_P, _R]], _Wrapped[_P, _R, _P, _R]]: ...
23 changes: 14 additions & 9 deletions stubs/cachetools/cachetools/func.pyi
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
from _typeshed import IdentityFunction
from collections.abc import Callable, Sequence
from typing import TypeVar
from typing import TypeVar, overload
from typing_extensions import deprecated

from . import _Cached

Check failure on line 5 in stubs/cachetools/cachetools/func.pyi

View workflow job for this annotation

GitHub Actions / pyright: Run test cases (Linux, 3.13)

"_Cached" is unknown import symbol (reportAttributeAccessIssue)

__all__ = ("fifo_cache", "lfu_cache", "lru_cache", "mru_cache", "rr_cache", "ttl_cache")
_T = TypeVar("_T")
_S = TypeVar("_S")

def fifo_cache(maxsize: float | None = 128, typed: bool = False) -> IdentityFunction: ...
def lfu_cache(maxsize: float | None = 128, typed: bool = False) -> IdentityFunction: ...
def lru_cache(maxsize: float | None = 128, typed: bool = False) -> IdentityFunction: ...
def fifo_cache(maxsize: float | None = 128, typed: bool = False) -> Callable[[Callable[..., _T]], _Cached[_T]]: ...
def lfu_cache(maxsize: float | None = 128, typed: bool = False) -> Callable[[Callable[..., _T]], _Cached[_T]]: ...
def lru_cache(maxsize: float | None = 128, typed: bool = False) -> Callable[[Callable[..., _T]], _Cached[_T]]: ...
@deprecated("@mru_cache is deprecated")
def mru_cache(maxsize: float | None = 128, typed: bool = False) -> IdentityFunction: ...
def mru_cache(maxsize: float | None = 128, typed: bool = False) -> Callable[[Callable[..., _T]], _Cached[_T]]: ...
@overload
def rr_cache(maxsize: float | None = 128, *, typed: bool = False) -> Callable[[Callable[..., _T]], _Cached[_T]]: ...
@overload
def rr_cache(
maxsize: float | None = 128, choice: Callable[[Sequence[_T]], _T] | None = ..., typed: bool = False
) -> IdentityFunction: ...
maxsize: float | None, choice: Callable[[Sequence[_S]], _S], typed: bool = False
) -> Callable[[Callable[..., _T]], _Cached[_T]]: ...
def ttl_cache(
maxsize: float | None = 128, ttl: float = 600, timer: Callable[[], float] = ..., typed: bool = False
) -> IdentityFunction: ...
) -> Callable[[Callable[..., _T]], _Cached[_T]]: ...
Loading