Raise not-implemented error. Implemented to override `MutableSequence.append` which provides an erroneous default implementation. :raises NotImplementedError: use ``sl.add(value)`` instead
(self, value)
| 1284 | |
| 1285 | |
| 1286 | def append(self, value): |
| 1287 | """Raise not-implemented error. |
| 1288 | |
| 1289 | Implemented to override `MutableSequence.append` which provides an |
| 1290 | erroneous default implementation. |
| 1291 | |
| 1292 | :raises NotImplementedError: use ``sl.add(value)`` instead |
| 1293 | |
| 1294 | """ |
| 1295 | raise NotImplementedError('use ``sl.add(value)`` instead') |
| 1296 | |
| 1297 | |
| 1298 | def extend(self, values): |
no outgoing calls