Pop a `State` off of the stack.
(self)
| 2316 | return self._state_stack[-1] |
| 2317 | |
| 2318 | def pop_state(self) -> None: |
| 2319 | """Pop a `State` off of the stack.""" |
| 2320 | self._state_stack.pop() |
| 2321 | |
| 2322 | def push_state(self) -> None: |
| 2323 | """Push a new `State` onto the stack, copying the current state.""" |
no test coverage detected