(
self, key: str, value: bytes, expires: int | datetime | None = None
)
| 41 | return self.data.get(key, None) |
| 42 | |
| 43 | def set( |
| 44 | self, key: str, value: bytes, expires: int | datetime | None = None |
| 45 | ) -> None: |
| 46 | with self.lock: |
| 47 | self.data.update({key: value}) |
| 48 | |
| 49 | def delete(self, key: str) -> None: |
| 50 | with self.lock: |
nothing calls this directly
no outgoing calls
no test coverage detected