Delete all entries.
(self)
| 390 | return self._client.keys(self._name, pattern=pattern) |
| 391 | |
| 392 | def clear(self): |
| 393 | """Delete all entries.""" |
| 394 | self._client.clear(self._name) |
| 395 | |
| 396 | def items(self): |
| 397 | """Iterate over (key, value) pairs.""" |
no outgoing calls
no test coverage detected