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

Method __eq__

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

Source from the content-addressed store, hash-verified

235 self.enabled = enabled
236
237 def __eq__(self, other):
238 if not isinstance(other, self.__class__):
239 return NotImplemented
240 return self.module == other.module and self.offset == other.offset and self.address == other.address \
241 and self.enabled == other.enabled
242
243 def __ne__(self, other):
244 if not isinstance(other, self.__class__):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected