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

Method __ior__

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

Source from the content-addressed store, hash-verified

749 return self[key]
750
751 def __ior__(self, other):
752 self.update(other)
753 return self
754
755 def __or__(self, other):
756 if not isinstance(other, Mapping):

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected