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

from . import TTLCache

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