Update cachetools to 5.2.* (#8119)

This commit is contained in:
Shantanu
2022-06-21 00:02:00 -07:00
committed by GitHub
parent b36c7705a7
commit 7ee3b5672c
2 changed files with 3 additions and 2 deletions

View File

@@ -1 +1 @@
version = "5.0.*"
version = "5.2.*"

View File

@@ -1,6 +1,7 @@
from collections.abc import Hashable
__all__ = ("hashkey", "typedkey")
__all__ = ("hashkey", "methodkey", "typedkey")
def hashkey(*args: Hashable, **kwargs: Hashable) -> tuple[Hashable, ...]: ...
def methodkey(self: object, *args: Hashable, **kwargs: Hashable) -> tuple[Hashable, ...]: ...
def typedkey(*args: Hashable, **kwargs: Hashable) -> tuple[Hashable, ...]: ...