Perform += with a string,
(self, other)
| 195 | self.parts = [temp[:-n]] |
| 196 | |
| 197 | def __iadd__(self, other): |
| 198 | """Perform += with a string,""" |
| 199 | self.append(other) |
| 200 | return self |
| 201 | |
| 202 | def __bool__(self): |
| 203 | """Return true if we have something more than just an anchor.""" |