aboutsummaryrefslogtreecommitdiff
path: root/src/cachetools/cache.py
blob: ee5269d9eb0e4710587fa0227b20e2b3260853fa (plain)
1
2
3
4
5
6
7
8
9
import warnings

from . import Cache

warnings.warn(
    "cachetools.cache is deprecated, please use cachetools.Cache",
    DeprecationWarning,
    stacklevel=2,
)