aboutsummaryrefslogtreecommitdiff
path: root/src/cachetools
diff options
context:
space:
mode:
Diffstat (limited to 'src/cachetools')
-rw-r--r--src/cachetools/cache.py7
-rw-r--r--src/cachetools/fifo.py7
-rw-r--r--src/cachetools/lfu.py7
-rw-r--r--src/cachetools/lru.py7
-rw-r--r--src/cachetools/mru.py7
-rw-r--r--src/cachetools/rr.py7
-rw-r--r--src/cachetools/ttl.py7
7 files changed, 49 insertions, 0 deletions
diff --git a/src/cachetools/cache.py b/src/cachetools/cache.py
new file mode 100644
index 0000000..8c9dfd7
--- /dev/null
+++ b/src/cachetools/cache.py
@@ -0,0 +1,7 @@
+import warnings
+
+from . import Cache
+
+warnings.warn(
+ "cachetools.cache is deprecated, please use cachetools.Cache", DeprecationWarning
+)
diff --git a/src/cachetools/fifo.py b/src/cachetools/fifo.py
new file mode 100644
index 0000000..ec072cd
--- /dev/null
+++ b/src/cachetools/fifo.py
@@ -0,0 +1,7 @@
+import warnings
+
+from . import FIFOCache
+
+warnings.warn(
+ "cachetools.fifo is deprecated, please use cachetools.FIFOCache", DeprecationWarning
+)
diff --git a/src/cachetools/lfu.py b/src/cachetools/lfu.py
new file mode 100644
index 0000000..44514ac
--- /dev/null
+++ b/src/cachetools/lfu.py
@@ -0,0 +1,7 @@
+import warnings
+
+from . import LFUCache
+
+warnings.warn(
+ "cachetools.lfu is deprecated, please use cachetools.LFUCache", DeprecationWarning
+)
diff --git a/src/cachetools/lru.py b/src/cachetools/lru.py
new file mode 100644
index 0000000..5d557b0
--- /dev/null
+++ b/src/cachetools/lru.py
@@ -0,0 +1,7 @@
+import warnings
+
+from . import LRUCache
+
+warnings.warn(
+ "cachetools.lru is deprecated, please use cachetools.LRUCache", DeprecationWarning
+)
diff --git a/src/cachetools/mru.py b/src/cachetools/mru.py
new file mode 100644
index 0000000..0714bdc
--- /dev/null
+++ b/src/cachetools/mru.py
@@ -0,0 +1,7 @@
+import warnings
+
+from . import MRUCache
+
+warnings.warn(
+ "cachetools.mru is deprecated, please use cachetools.MRUCache", DeprecationWarning
+)
diff --git a/src/cachetools/rr.py b/src/cachetools/rr.py
new file mode 100644
index 0000000..f49e185
--- /dev/null
+++ b/src/cachetools/rr.py
@@ -0,0 +1,7 @@
+import warnings
+
+from . import RRCache
+
+warnings.warn(
+ "cachetools.rr is deprecated, please use cachetools.RRCache", DeprecationWarning
+)
diff --git a/src/cachetools/ttl.py b/src/cachetools/ttl.py
new file mode 100644
index 0000000..d96b677
--- /dev/null
+++ b/src/cachetools/ttl.py
@@ -0,0 +1,7 @@
+import warnings
+
+from . import TTLCache
+
+warnings.warn(
+ "cachetools.ttl is deprecated, please use cachetools.TTLCache", DeprecationWarning
+)