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

Method __ior__

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

Source from the content-addressed store, hash-verified

762 return self[key]
763
764 def __ior__(self, other):
765 self.update(other)
766 return self
767
768 def __or__(self, other):
769 if not isinstance(other, Mapping):

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected