Add keys module to cachetools package (#5938)

This commit is contained in:
JHeilCoveo
2021-08-20 09:59:15 +02:00
committed by GitHub
parent fac273a545
commit 7144118995
2 changed files with 5 additions and 2 deletions

View File

@@ -1,2 +1 @@
version = "0.1"
python2 = true
version = "4.2"

View File

@@ -0,0 +1,4 @@
from typing import Hashable, Tuple
def hashkey(*args: Hashable, **kwargs: Hashable) -> Tuple[Hashable, ...]: ...
def typedkey(*args: Hashable, **kwargs: Hashable) -> Tuple[Hashable, ...]: ...