(self, other)
| 126 | and self.size == other.size and self.loaded == other.loaded |
| 127 | |
| 128 | def __ne__(self, other): |
| 129 | if not isinstance(other, self.__class__): |
| 130 | return NotImplemented |
| 131 | return not (self == other) |
| 132 | |
| 133 | def __hash__(self): |
| 134 | return hash((self.name, self.short_name, self.address. self.size, self.loaded)) |
nothing calls this directly
no outgoing calls
no test coverage detected