Skip to content

Commit c5d7d24

Browse files
author
Fabien Coelho
committed
add missing inheritance
1 parent cba76b8 commit c5d7d24

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CacheToolsUtils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def dbsize(self, *args, **kwargs):
102102
# CACHETOOLS EXTENSIONS
103103
#
104104

105-
class DebugCache:
105+
class DebugCache(MutMap):
106106
"""Debug class.
107107
108108
:param cache: actual cache
@@ -152,7 +152,7 @@ def reset(self): # pragma: no cover
152152
return self._cache.reset() # type: ignore
153153

154154

155-
class DictCache(_MutMapMix):
155+
class DictCache(_MutMapMix, MutMap):
156156
"""Cache class based on dict."""
157157

158158
def __init__(self):

docs/VERSIONS.md

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ Install [package](https://pypi.org/project/CacheToolsUtils/) from
1919
Maybe the existing client can do that with appropriate options?
2020
- `cached`: add `contains` and `delete` parameters to change names?
2121

22+
## 8.5 on ?
23+
24+
Add missing MutableMapping inheritance.
25+
Update GitHub action versions.
26+
2227
## 8.4 on 2024-01-20
2328

2429
Improved documentation.

0 commit comments

Comments
 (0)