(self, key)
| 48 | dict.__setitem__(self, key_deleted, False) |
| 49 | |
| 50 | def addCachedKey(self, key): |
| 51 | if key not in self.cached_keys and key != "content.json" and len(key) > 40: # Always keep keys smaller than 40 char |
| 52 | self.cached_keys.append(key) |
| 53 | |
| 54 | def __getitem__(self, key): |
| 55 | val = dict.get(self, key) |
no outgoing calls
no test coverage detected