(self, cache_key)
| 3963 | raise KeyError(cache_key) |
| 3964 | |
| 3965 | def __delitem__(self, cache_key): |
| 3966 | actual_key = self._convert_cache_key(cache_key) |
| 3967 | try: |
| 3968 | key_path = Path(actual_key) |
| 3969 | key_path.unlink() |
| 3970 | except FileNotFoundError: |
| 3971 | raise KeyError(cache_key) |
| 3972 | |
| 3973 | def __setitem__(self, cache_key, value): |
| 3974 | full_key = self._convert_cache_key(cache_key) |
nothing calls this directly
no test coverage detected