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

Method __ror__

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

Source from the content-addressed store, hash-verified

336 return new
337
338 def __ror__(self, other):
339 if not isinstance(other, dict):
340 return NotImplemented
341 new = self.__class__(other)
342 new.update(self)
343 return new
344
345
346try:

Callers

nothing calls this directly

Calls 3

isinstanceFunction · 0.85
__class__Method · 0.45
updateMethod · 0.45

Tested by

no test coverage detected