(self, other)
| 1109 | return self |
| 1110 | |
| 1111 | def __or__(self, other): |
| 1112 | if not isinstance(other, _collections_abc.Mapping): |
| 1113 | return NotImplemented |
| 1114 | m = self.copy() |
| 1115 | m.maps[0].update(other) |
| 1116 | return m |
| 1117 | |
| 1118 | def __ror__(self, other): |
| 1119 | if not isinstance(other, _collections_abc.Mapping): |
nothing calls this directly
no test coverage detected