(self, other)
| 422 | return self |
| 423 | |
| 424 | def __or__(self, other): |
| 425 | if isinstance(other, _collections_abc.Mapping): |
| 426 | c = self.copy() |
| 427 | c.update(other) |
| 428 | return c |
| 429 | return NotImplemented |
| 430 | |
| 431 | def __ror__(self, other): |
| 432 | if isinstance(other, _collections_abc.Mapping): |
nothing calls this directly
no test coverage detected