| 5 | class LinkedStack: |
| 6 | |
| 7 | class _Node: |
| 8 | __slots__ = "_element" , "_next" |
| 9 | |
| 10 | def __init__(self, element, next): |
| 11 | self._element = element |
| 12 | self._next = next |
| 13 | |
| 14 | def __init__(self): |
| 15 | self._head = None |
nothing calls this directly
no outgoing calls
no test coverage detected