(self, 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 |
| 1062 | def extend(self, sentences): |
| 1063 | for s in sentences: |
| 1064 | self.append(s) |
no outgoing calls