Get all values.
(self)
| 82 | return list(self.data.keys()) |
| 83 | |
| 84 | def values(self) -> list[Any]: |
| 85 | """Get all values.""" |
| 86 | with self._lock: |
| 87 | return list(self.data.values()) |
| 88 | |
| 89 | def items(self) -> list[tuple[str, Any]]: |
| 90 | """Get all items.""" |
no outgoing calls