(self, other)
| 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__): |
nothing calls this directly
no outgoing calls
no test coverage detected