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