Step back one step in nested state.
(self)
| 61 | self.append(state) |
| 62 | |
| 63 | def reset(self) -> None: |
| 64 | """ Step back one step in nested state. """ |
| 65 | self.pop() |
| 66 | |
| 67 | def isstate(self, state: Any) -> bool: |
| 68 | """ Test that top (current) level is of given state. """ |
nothing calls this directly
no outgoing calls
no test coverage detected