(self, word)
| 474 | Chunk.__init__(self, *args, **kwargs) |
| 475 | |
| 476 | def append(self, word): |
| 477 | self.words.append(word) |
| 478 | word.pnp = self |
| 479 | if word.chunk is not None: |
| 480 | word.chunk.pnp = self |
| 481 | if word.chunk not in self.chunks: |
| 482 | self.chunks.append(word.chunk) |
| 483 | |
| 484 | @property |
| 485 | def preposition(self): |