MCPcopy Create free account
hub / github.com/Vector35/debugger / __eq__

Method __eq__

api/python/debuggercontroller.py:165–169  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

163 self.hint = hint
164
165 def __eq__(self, other):
166 if not isinstance(other, self.__class__):
167 return NotImplemented
168 return self.name == other.name and self.value == other.value and self.width == other.width \
169 and self.index == other.index and self.hint == other.hint
170
171 def __ne__(self, other):
172 if not isinstance(other, self.__class__):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected