(self, other)
| 48 | return new |
| 49 | |
| 50 | def __ror__(self, other): |
| 51 | if not isinstance(other, dict): |
| 52 | return NotImplemented |
| 53 | |
| 54 | new = defaultdict(self.default_factory, other) |
| 55 | new.update(self) |
| 56 | return new |
| 57 | |
| 58 | defaultdict.__module__ = 'collections' |
nothing calls this directly
no test coverage detected