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

Method __eq__

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

Source from the content-addressed store, hash-verified

71 return self.lower() > other.lower()
72
73 def __eq__(self, other):
74 return self.lower() == other.lower()
75
76 def __ne__(self, other):
77 return self.lower() != other.lower()

Callers

nothing calls this directly

Calls 1

lowerMethod · 0.95

Tested by

no test coverage detected