(self, key: str)
| 182 | return res |
| 183 | |
| 184 | def _getvaluepath(self, key: str) -> Path: |
| 185 | return self._cachedir.joinpath(self._CACHE_PREFIX_VALUES, Path(key)) |
| 186 | |
| 187 | def get(self, key: str, default): |
| 188 | """Return the cached value for the given key. |
no outgoing calls