blob: 2e66e20a07f2428e940815bb2f3d238dc83b3282 [file] [log] [blame]
"""Extensible memoizing collections and decorators."""
from .cache import Cache
from .decorators import cached, cachedmethod
from .fifo import FIFOCache
from .lfu import LFUCache
from .lru import LRUCache
from .mru import MRUCache
from .rr import RRCache
from .ttl import TTLCache
__all__ = (
'Cache',
'FIFOCache',
'LFUCache',
'LRUCache',
'MRUCache',
'RRCache',
'TTLCache',
'cached',
'cachedmethod'
)
__version__ = '4.2.1'