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

Method __eq__

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

Source from the content-addressed store, hash-verified

120 return dbgcore.BNDebuggerIsSameBaseModule(module1, module2)
121
122 def __eq__(self, other):
123 if not isinstance(other, self.__class__):
124 return NotImplemented
125 return self.name == other.name and self.short_name == other.short_name and self.address == other.address\
126 and self.size == other.size and self.loaded == other.loaded
127
128 def __ne__(self, other):
129 if not isinstance(other, self.__class__):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected