(self, other)
| 336 | return new |
| 337 | |
| 338 | def __ror__(self, other): |
| 339 | if not isinstance(other, dict): |
| 340 | return NotImplemented |
| 341 | new = self.__class__(other) |
| 342 | new.update(self) |
| 343 | return new |
| 344 | |
| 345 | |
| 346 | try: |
nothing calls this directly
no test coverage detected