(self)
| 279 | return self._path |
| 280 | |
| 281 | def load(self): |
| 282 | # ["NN", "s", "fhassuf", "1", "NNS", "x"] |
| 283 | list.extend(self, (x.split() for x in _read(self._path))) |
| 284 | |
| 285 | def apply(self, token, previous=(None, None), next=(None, None)): |
| 286 | """ Applies lexical rules to the given token, |