Skip to content

Commit 7ee3b56

Browse files
authored
Update cachetools to 5.2.* (#8119)
1 parent b36c770 commit 7ee3b56

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

stubs/cachetools/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "5.0.*"
1+
version = "5.2.*"

stubs/cachetools/cachetools/keys.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from collections.abc import Hashable
22

3-
__all__ = ("hashkey", "typedkey")
3+
__all__ = ("hashkey", "methodkey", "typedkey")
44

55
def hashkey(*args: Hashable, **kwargs: Hashable) -> tuple[Hashable, ...]: ...
6+
def methodkey(self: object, *args: Hashable, **kwargs: Hashable) -> tuple[Hashable, ...]: ...
67
def typedkey(*args: Hashable, **kwargs: Hashable) -> tuple[Hashable, ...]: ...

0 commit comments

Comments
 (0)