aboutsummaryrefslogtreecommitdiff
path: root/src/cachetools/lfu.py
blob: 44514ac362c666127bfa61fcec065e416742aba1 (plain)
1
2
3
4
5
6
7
import warnings

from . import LFUCache

warnings.warn(
    "cachetools.lfu is deprecated, please use cachetools.LFUCache", DeprecationWarning
)