(self, index1, index2, chars, tags=None)
| 165 | tags = None |
| 166 | |
| 167 | def __init__(self, index1, index2, chars, tags=None): |
| 168 | self.marks_before = {} |
| 169 | self.marks_after = {} |
| 170 | self.index1 = index1 |
| 171 | self.index2 = index2 |
| 172 | self.chars = chars |
| 173 | if tags: |
| 174 | self.tags = tags |
| 175 | |
| 176 | def __repr__(self): |
| 177 | s = self.__class__.__name__ |