(self)
| 294 | return self._dict.items() |
| 295 | |
| 296 | def multi_items(self) -> list[tuple[_KeyType, _CovariantValueType]]: |
| 297 | return list(self._list) |
| 298 | |
| 299 | def __getitem__(self, key: _KeyType) -> _CovariantValueType: |
| 300 | return self._dict[key] |
no outgoing calls