(self, key: str)
| 141 | return res |
| 142 | |
| 143 | def _getvaluepath(self, key: str) -> Path: |
| 144 | return self._cachedir.joinpath(self._CACHE_PREFIX_VALUES, Path(key)) |
| 145 | |
| 146 | def get(self, key: str, default): |
| 147 | """Return the cached value for the given key. |
no outgoing calls