(self, other)
| 429 | return NotImplemented |
| 430 | |
| 431 | def __ror__(self, other): |
| 432 | if isinstance(other, _collections_abc.Mapping): |
| 433 | c = self.__class__() |
| 434 | c.update(other) |
| 435 | c.update(self) |
| 436 | return c |
| 437 | return NotImplemented |
| 438 | |
| 439 | |
| 440 | class finalize: |
nothing calls this directly
no test coverage detected