(self, **kwargs)
| 648 | # Implements the Mapping protocol without explicitly inheriting from collections.abc.Mapping. |
| 649 | class BareMappingLike: |
| 650 | def __init__(self, **kwargs): |
| 651 | self.data = dict(kwargs) |
| 652 | |
| 653 | def __len__(self): |
| 654 | return len(self.data) |