A view of the key-value items in the dict. Thread-safe.
(self)
| 627 | return self._parse().values() |
| 628 | |
| 629 | def items(self) -> ItemsView[str, Any]: |
| 630 | """A view of the key-value items in the dict. Thread-safe.""" |
| 631 | return self._parse().items() |
| 632 | |
| 633 | def __contains__(self, key: Any) -> bool: |
| 634 | """True if the given key is in the dict. Thread-safe.""" |
no test coverage detected