MCPcopy Index your code
hub / github.com/python/cpython / __gt__

Method __gt__

Lib/importlib/metadata/_text.py:70–71  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

68 return self.lower() < other.lower()
69
70 def __gt__(self, other):
71 return self.lower() > other.lower()
72
73 def __eq__(self, other):
74 return self.lower() == other.lower()

Callers

nothing calls this directly

Calls 1

lowerMethod · 0.95

Tested by

no test coverage detected