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

Method __ne__

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

Source from the content-addressed store, hash-verified

241 and self.enabled == other.enabled
242
243 def __ne__(self, other):
244 if not isinstance(other, self.__class__):
245 return NotImplemented
246 return not (self == other)
247
248 def __hash__(self):
249 return hash((self.module, self.offset, self.address. self.enabled))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected