Append an item to a List
(self, obj: t.Any)
| 103 | _inserts: List[t.Any] = List() |
| 104 | |
| 105 | def append(self, obj: t.Any) -> None: |
| 106 | """Append an item to a List""" |
| 107 | self._extend.append(obj) |
| 108 | |
| 109 | def extend(self, other: t.Any) -> None: |
| 110 | """Extend a list""" |
no outgoing calls