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

Method __ror__

Lib/weakref.py:431–437  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

429 return NotImplemented
430
431 def __ror__(self, other):
432 if isinstance(other, _collections_abc.Mapping):
433 c = self.__class__()
434 c.update(other)
435 c.update(self)
436 return c
437 return NotImplemented
438
439
440class finalize:

Callers

nothing calls this directly

Calls 3

isinstanceFunction · 0.85
__class__Method · 0.45
updateMethod · 0.45

Tested by

no test coverage detected