7 lines
142 B
Python
7 lines
142 B
Python
import warnings
|
|
|
|
from . import RRCache
|
|
|
|
warnings.warn(
|
|
"cachetools.rr is deprecated, please use cachetools.RRCache", DeprecationWarning
|
|
)
|