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

Method __ne__

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

Source from the content-addressed store, hash-verified

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__):
1406 return NotImplemented
1407 return not (self == other)
1408
1409 def __hash__(self):
1410 return hash(ctypes.addressof(self.handle.contents))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected