Example #1
0
File: en.py Project: th0/test2
 def stem(self, word):
     word = word.lower()
     return PorterStemmer.stem(self, word, 0, len(word) - 1)
Example #2
0
 def stem(self, word):
     return PorterStemmer.stem(self, word, 0, len(word) - 1)
Example #3
0
 def stem(self, word):
     # type: (unicode) -> unicode
     return PorterStemmer.stem(self, word, 0, len(word) - 1)
Example #4
0
 def stem(self, word):
     return PorterStemmer.stem(self, word, 0, len(word) - 1)
Example #5
0
File: en.py Project: JelteF/sphinx
 def stem(self, word):
     # type: (unicode) -> unicode
     return PorterStemmer.stem(self, word, 0, len(word) - 1)