Yields a dictionary of (inflected, infinitive)-items.
(self)
| 1352 | |
| 1353 | @property |
| 1354 | def inflections(self): |
| 1355 | """ Yields a dictionary of (inflected, infinitive)-items. |
| 1356 | """ |
| 1357 | if dict.__len__(self) == 0: |
| 1358 | self.load() |
| 1359 | return self._inverse |
| 1360 | |
| 1361 | @property |
| 1362 | def TENSES(self): |