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

Method __eq__

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

Source from the content-addressed store, hash-verified

271 self.offset = offset
272
273 def __eq__(self, other):
274 if not isinstance(other, self.__class__):
275 return NotImplemented
276 return self.module == other.module and self.offset == other.offset
277
278 def __ne__(self, other):
279 if not isinstance(other, self.__class__):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected