The number of entries in the dict. Thread-safe.
(self)
| 611 | return repr(self._parse()) |
| 612 | |
| 613 | def __len__(self) -> int: |
| 614 | """The number of entries in the dict. Thread-safe.""" |
| 615 | return len(self._parse()) |
| 616 | |
| 617 | def has_key(self, k: str) -> bool: |
| 618 | """True if the given key is in the dict. Thread-safe.""" |