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

Method __ror__

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

__class__Method · 0.45
updateMethod · 0.45

Tested by

no test coverage detected