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

Method __ne__

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

Source from the content-addressed store, hash-verified

276 return self.module == other.module and self.offset == other.offset
277
278 def __ne__(self, other):
279 if not isinstance(other, self.__class__):
280 return NotImplemented
281 return not (self == other)
282
283 def __lt__(self, other):
284 if self.module < other.module:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected