(self, other)
| 760 | return new |
| 761 | |
| 762 | def __ror__(self, other): |
| 763 | if not isinstance(other, Mapping): |
| 764 | return NotImplemented |
| 765 | new = dict(other) |
| 766 | new.update(self) |
| 767 | return new |
| 768 | |
| 769 | def _create_environ_mapping(): |
| 770 | if name == 'nt': |
nothing calls this directly
no test coverage detected