(self, other)
| 1397 | dbgcore.BNDebuggerFreeController(self.handle) |
| 1398 | |
| 1399 | def __eq__(self, other): |
| 1400 | if not isinstance(other, self.__class__): |
| 1401 | return NotImplemented |
| 1402 | return ctypes.addressof(self.handle.contents) == ctypes.addressof(other.handle.contents) |
| 1403 | |
| 1404 | def __ne__(self, other): |
| 1405 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected