(self, key: str)
| 47 | self.data.update({key: value}) |
| 48 | |
| 49 | def delete(self, key: str) -> None: |
| 50 | with self.lock: |
| 51 | if key in self.data: |
| 52 | self.data.pop(key) |
| 53 | |
| 54 | |
| 55 | class SeparateBodyBaseCache(BaseCache): |
nothing calls this directly
no outgoing calls
no test coverage detected