예제 #1
0
 def lexemizer(self, form, this_method):
     particle = this_method[1]
     lexeme = yield without_fixed_suffix(form, len(particle))
     yield [with_suffix(f, particle) for f in lexeme]
예제 #2
0
 def lexemizer(self, form, this_method):
     particle = this_method[1]
     lexeme = yield without_fixed_suffix(form, len(particle))
     yield [with_suffix(f, particle) for f in lexeme]
예제 #3
0
 def normalizer(self, form, this_method):
     particle = this_method[1]
     normal_form = yield without_fixed_suffix(form, len(particle))
     yield with_suffix(normal_form, particle)
예제 #4
0
 def normalizer(self, form, this_method):
     particle = this_method[1]
     normal_form = yield without_fixed_suffix(form, len(particle))
     yield with_suffix(normal_form, particle)