aboutsummaryrefslogtreecommitdiff
path: root/src/cachetools/rr.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/cachetools/rr.py')
-rw-r--r--src/cachetools/rr.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cachetools/rr.py b/src/cachetools/rr.py
new file mode 100644
index 0000000..81331bc
--- /dev/null
+++ b/src/cachetools/rr.py
@@ -0,0 +1,9 @@
+import warnings
+
+from . import RRCache
+
+warnings.warn(
+ "cachetools.rr is deprecated, please use cachetools.RRCache",
+ DeprecationWarning,
+ stacklevel=2,
+)