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

Method __ne__

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

Source from the content-addressed store, hash-verified

169 and self.index == other.index and self.hint == other.hint
170
171 def __ne__(self, other):
172 if not isinstance(other, self.__class__):
173 return NotImplemented
174 return not (self == other)
175
176 def __hash__(self):
177 return hash((self.name, self.value, self.width. self.index, self.hint))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected