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

Method __eq__

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

Source from the content-addressed store, hash-verified

75 self.rip = rip
76
77 def __eq__(self, other):
78 if not isinstance(other, self.__class__):
79 return NotImplemented
80 return self.tid == other.tid and self.rip == other.rip
81
82 def __ne__(self, other):
83 if not isinstance(other, self.__class__):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected