(self, other)
| 753 | return self |
| 754 | |
| 755 | def __or__(self, other): |
| 756 | if not isinstance(other, Mapping): |
| 757 | return NotImplemented |
| 758 | new = dict(self) |
| 759 | new.update(other) |
| 760 | return new |
| 761 | |
| 762 | def __ror__(self, other): |
| 763 | if not isinstance(other, Mapping): |
nothing calls this directly
no test coverage detected