(self, other, *args)
| 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) |
no test coverage detected