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

Method __ior__

Lib/collections/__init__.py:327–329  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

325 return dict.__eq__(self, other)
326
327 def __ior__(self, other):
328 self.update(other)
329 return self
330
331 def __or__(self, other):
332 if not isinstance(other, dict):

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected