Handles list1 += list2
(self, t)
| 543 | return SymbolList(super(SymbolList, self).__add__(self._check_list(t)), raise_on_error=self.raise_on_error) |
| 544 | |
| 545 | def __iadd__(self, t): |
| 546 | """ Handles list1 += list2 """ |
| 547 | return super(SymbolList, self).__iadd__(self._check_list(t)) |
| 548 | |
| 549 | def __eq__(self, other): |
| 550 | """ Handles list1 == list2 """ |
nothing calls this directly
no test coverage detected