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

Method __ne__

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

Source from the content-addressed store, hash-verified

334 and self.module == other.module
335
336 def __ne__(self, other):
337 if not isinstance(other, self.__class__):
338 return NotImplemented
339 return not (self == other)
340
341 def __hash__(self):
342 return hash((self.index, self.pc, self.sp, self.fp, self.func_name, self.func_start, self.module))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected