Add back and update cachetools stubs to cachetools 4.2.4 (#6096)

This commit is contained in:
Akuli
2021-09-30 14:53:01 +00:00
committed by GitHub
parent 32bc2161a1
commit 3eee9e1d88
12 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
cachetools.Cache.get
cachetools.LFUCache.__delitem__
cachetools.LFUCache.__getitem__
cachetools.LFUCache.__setitem__
cachetools.LRUCache.__delitem__
cachetools.LRUCache.__getitem__
cachetools.LRUCache.__setitem__
cachetools.TTLCache.__delitem__
cachetools.TTLCache.__getitem__
cachetools.TTLCache.__setitem__
cachetools.cache.Cache.get
cachetools.lfu.LFUCache.__delitem__
cachetools.lfu.LFUCache.__getitem__
cachetools.lfu.LFUCache.__setitem__
cachetools.lru.LRUCache.__delitem__
cachetools.lru.LRUCache.__getitem__
cachetools.lru.LRUCache.__setitem__
cachetools.ttl.TTLCache.__delitem__
cachetools.ttl.TTLCache.__getitem__
cachetools.ttl.TTLCache.__setitem__