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

Method __eq__

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

Source from the content-addressed store, hash-verified

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__):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected