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

Method __gt__

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

Source from the content-addressed store, hash-verified

288 return self.offset < other.offset
289
290 def __gt__(self, other):
291 if self.module > other.module:
292 return True
293 elif self.module < other.module:
294 return False
295 return self.offset > other.offset
296
297 def __hash__(self):
298 return hash((self.module, self.offset))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected