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