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

Method __lt__

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

Source from the content-addressed store, hash-verified

281 return not (self == other)
282
283 def __lt__(self, other):
284 if self.module < other.module:
285 return True
286 elif self.module > other.module:
287 return False
288 return self.offset < other.offset
289
290 def __gt__(self, other):
291 if self.module > other.module:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected