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

Method __ne__

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

Source from the content-addressed store, hash-verified

42 return self.pid == other.pid and self.name == other.name
43
44 def __ne__(self, other):
45 if not isinstance(other, self.__class__):
46 return NotImplemented
47 return not (self == other)
48
49 def __hash__(self):
50 return hash((self.pid, self.pid))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected