Returns a list of all possible inflections of the given verb.
(self, verb, parse=True)
| 1382 | return self.find_lemma(verb) |
| 1383 | |
| 1384 | def lexeme(self, verb, parse=True): |
| 1385 | """ Returns a list of all possible inflections of the given verb. |
| 1386 | """ |
| 1387 | a = [] |
| 1388 | b = self.lemma(verb, parse=parse) |
| 1389 | if b in self: |
| 1390 | a = [x for x in self[b] if x != ""] |
| 1391 | elif parse is True: # rule-based |
| 1392 | a = self.find_lexeme(b) |
| 1393 | u = []; [u.append(x) for x in a if x not in u] |
| 1394 | return u |
| 1395 | |
| 1396 | def conjugate(self, verb, *args, **kwargs): |
| 1397 | """ Inflects the verb and returns the given tense (or None). |