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

Method __ne__

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

Source from the content-addressed store, hash-verified

126 and self.size == other.size and self.loaded == other.loaded
127
128 def __ne__(self, other):
129 if not isinstance(other, self.__class__):
130 return NotImplemented
131 return not (self == other)
132
133 def __hash__(self):
134 return hash((self.name, self.short_name, self.address. self.size, self.loaded))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected