(self)
| 487 | self._data: Dict[_KT, Tuple[_KT, _VT, List[int]]] = {} |
| 488 | |
| 489 | def _inc_counter(self): |
| 490 | self._counter += 1 |
| 491 | return self._counter |
| 492 | |
| 493 | @overload |
| 494 | def get(self, key: _KT) -> Optional[_VT]: ... |
no outgoing calls
no test coverage detected