Remove and return the ``item`` at ``index`` (default last). Raises :py:exc:`IndexError` if list is empty or index is out of range.
(self, /, index: int = -1)
| 999 | raise NotImplementedError |
| 1000 | |
| 1001 | def pop(self, /, index: int = -1) -> T: |
| 1002 | """Remove and return the ``item`` at ``index`` (default last). |
| 1003 | |
| 1004 | Raises :py:exc:`IndexError` if list is empty or index is out of range. |
| 1005 | """ |
| 1006 | raise NotImplementedError |
| 1007 | |
| 1008 | def push(self, /, object: T) -> None: |
| 1009 | pass |
no outgoing calls