MCPcopy Index your code
hub / github.com/RustPython/RustPython / __ror__

Method __ror__

Lib/os.py:762–767  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

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
769def _create_environ_mapping():
770 if name == 'nt':

Callers

nothing calls this directly

Calls 2

isinstanceFunction · 0.85
updateMethod · 0.45

Tested by

no test coverage detected