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

Method __eq__

Lib/_collections_abc.py:819–822  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

817 return ValuesView(self)
818
819 def __eq__(self, other):
820 if not isinstance(other, Mapping):
821 return NotImplemented
822 return dict(self.items()) == dict(other.items())
823
824 __reversed__ = None
825

Callers

nothing calls this directly

Calls 1

itemsMethod · 0.95

Tested by

no test coverage detected