(self, index, sentence)
| 1054 | self.append(Sentence(s, token, language)) |
| 1055 | |
| 1056 | def insert(self, index, sentence): |
| 1057 | list.insert(self, index, sentence) |
| 1058 | self[-1].text = self |
| 1059 | def append(self, sentence): |
| 1060 | list.append(self, sentence) |
| 1061 | self[-1].text = self |
no outgoing calls