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

Method __eq__

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

Source from the content-addressed store, hash-verified

37 self.name = name
38
39 def __eq__(self, other):
40 if not isinstance(other, self.__class__):
41 return NotImplemented
42 return self.pid == other.pid and self.name == other.name
43
44 def __ne__(self, other):
45 if not isinstance(other, self.__class__):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected