(self, cache_key)
| 3950 | return json.dumps(obj, default=self._serialize_if_needed) |
| 3951 | |
| 3952 | def __contains__(self, cache_key): |
| 3953 | actual_key = self._convert_cache_key(cache_key) |
| 3954 | return os.path.isfile(actual_key) |
| 3955 | |
| 3956 | def __getitem__(self, cache_key): |
| 3957 | """Retrieve value from a cache key.""" |
nothing calls this directly
no test coverage detected