1import warnings 2 3from . import LRUCache 4 5warnings.warn( 6 "cachetools.lru is deprecated, please use cachetools.LRUCache", 7 DeprecationWarning, 8 stacklevel=2, 9) 10