(self)
| 52 | ) |
| 53 | |
| 54 | def __init__(self) -> None: |
| 55 | self._data: dict[Any, OCSPResponse] = {} |
| 56 | # Hold this lock when accessing _data. |
| 57 | self._lock = _create_lock() |
| 58 | |
| 59 | def _get_cache_key(self, ocsp_request: OCSPRequest) -> CACHE_KEY_TYPE: |
| 60 | return self.CACHE_KEY_TYPE( |
nothing calls this directly
no test coverage detected