Extend a list
(self, other: t.Any)
| 107 | self._extend.append(obj) |
| 108 | |
| 109 | def extend(self, other: t.Any) -> None: |
| 110 | """Extend a list""" |
| 111 | self._extend.extend(other) |
| 112 | |
| 113 | def prepend(self, other: t.Any) -> None: |
| 114 | """like list.extend, but for the front""" |
no outgoing calls