(self, other)
| 329 | return self |
| 330 | |
| 331 | def __or__(self, other): |
| 332 | if not isinstance(other, dict): |
| 333 | return NotImplemented |
| 334 | new = self.__class__(self) |
| 335 | new.update(other) |
| 336 | return new |
| 337 | |
| 338 | def __ror__(self, other): |
| 339 | if not isinstance(other, dict): |
nothing calls this directly
no test coverage detected