pattern icon indicating copy to clipboard operation
pattern copied to clipboard

function lexeme return wrong result

Open shinux opened this issue 9 years ago • 1 comments

>>>lexeme('encumbered')
>>>['encumber', 'encumbers', 'encumberring', 'encumberred']

but the word encumber's past tense should be encumbered. also the word crossbreed's past tense should be crossbreed.

found that all words endswith eed return the wrong past tense.

shinux avatar Dec 04 '15 03:12 shinux

+1 here - I tried :

lexeme('leave') ['leave', 'leaves', 'leaving', 'leaved']

the past tense of 'leave' is left and not 'leaved' - I am trying to convert either leave to left or left to leave by using lexeme but it's not yielding the intended result - is there any other way I can convert leave to left?

aurghob avatar Jan 19 '19 00:01 aurghob