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

from . import TTLCache

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