MCPcopy Create free account
hub / github.com/ActiveState/code / find

Method find

recipes/Python/194371_Case_Insensitive_Strings/recipe-194371.py:45–46  ·  view source on GitHub ↗
(self, other, *args)

Source from the content-addressed store, hash-verified

43 return str.endswith(self.__lowerCaseMe, other.lower(), *args)
44
45 def find(self, other, *args):
46 return str.find(self.__lowerCaseMe, other.lower(), *args)
47
48 def index(self, other, *args):
49 return str.index(self.__lowerCaseMe, other.lower(), *args)

Callers 6

testFunction · 0.45
readlinesMethod · 0.45
SendMessageMethod · 0.45
iscontenttypeFunction · 0.45
recipe-109357.pyFile · 0.45
recipe-101521.pyFile · 0.45

Calls 1

lowerMethod · 0.45

Tested by

no test coverage detected