| 1462 | return [] |
| 1463 | |
| 1464 | class Tenses(list): |
| 1465 | |
| 1466 | def __contains__(self, tense): |
| 1467 | # t in tenses(verb) also works when t is an alias (e.g. "1sg"). |
| 1468 | return list.__contains__(self, TENSES[tense_id(tense)][:-2]) |
| 1469 | |
| 1470 | ### SENTIMENT POLARITY LEXICON ##################################################################### |
| 1471 | # A sentiment lexicon can be used to discern objective facts from subjective opinions in text. |
no outgoing calls
no test coverage detected
searching dependent graphs…