MCPcopy Index your code
hub / github.com/python/cpython / __ror__

Method __ror__

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

Source from the content-addressed store, hash-verified

773 return new
774
775 def __ror__(self, other):
776 if not isinstance(other, Mapping):
777 return NotImplemented
778 new = dict(other)
779 new.update(self)
780 return new
781
782 if _exists("_clearenv"):
783 def clear(self):

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected