(self, other)
| 328 | return self |
| 329 | |
| 330 | def __or__(self, other): |
| 331 | if not isinstance(other, (dict, frozendict)): |
| 332 | return NotImplemented |
| 333 | new = self.__class__(self) |
| 334 | new.update(other) |
| 335 | return new |
| 336 | |
| 337 | def __ror__(self, other): |
| 338 | if not isinstance(other, (dict, frozendict)): |