Example #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]
Example #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]
Example #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)
Example #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)