Handles list1 + list2
(self, t: Iterable[Any])
| 539 | return super(SymbolList, self).insert(i, _check_is_symbol(v, self.raise_on_error)) |
| 540 | |
| 541 | def __add__(self, t: Iterable[Any]) -> 'SymbolList': |
| 542 | """ Handles list1 + list2 """ |
| 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 """ |
nothing calls this directly
no test coverage detected