Yields a dictionary of (infinitive, [inflections])-items.
(self)
| 1344 | |
| 1345 | @property |
| 1346 | def infinitives(self): |
| 1347 | """ Yields a dictionary of (infinitive, [inflections])-items. |
| 1348 | """ |
| 1349 | if dict.__len__(self) == 0: |
| 1350 | self.load() |
| 1351 | return self |
| 1352 | |
| 1353 | @property |
| 1354 | def inflections(self): |