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

Method __ne__

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

Source from the content-addressed store, hash-verified

80 return self.tid == other.tid and self.rip == other.rip
81
82 def __ne__(self, other):
83 if not isinstance(other, self.__class__):
84 return NotImplemented
85 return not (self == other)
86
87 def __hash__(self):
88 return hash((self.tid, self.rip))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected