(self)
| 390 | |
| 391 | class CacheBase: |
| 392 | def __init__(self) -> None: |
| 393 | self.lock = threading.Lock() |
| 394 | self.statistics = CacheStatistics() |
| 395 | |
| 396 | def reset_statistics(self) -> None: |
| 397 | """Reset all statistics to zero.""" |
nothing calls this directly
no test coverage detected