mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
Add keys module to cachetools package (#5938)
This commit is contained in:
@@ -1,2 +1 @@
|
||||
version = "0.1"
|
||||
python2 = true
|
||||
version = "4.2"
|
||||
|
||||
4
stubs/cachetools/cachetools/keys.pyi
Normal file
4
stubs/cachetools/cachetools/keys.pyi
Normal 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, ...]: ...
|
||||
Reference in New Issue
Block a user