Get all items.
(self)
| 87 | return list(self.data.values()) |
| 88 | |
| 89 | def items(self) -> list[tuple[str, Any]]: |
| 90 | """Get all items.""" |
| 91 | with self._lock: |
| 92 | return list(self.data.items()) |
| 93 | |
| 94 | def __len__(self) -> int: |
| 95 | with self._lock: |
no outgoing calls