Push a window onto the currently focused stack.
(self, wname)
| 218 | self.refresh() |
| 219 | |
| 220 | def push(self, wname): |
| 221 | """ |
| 222 | Push a window onto the currently focused stack. |
| 223 | """ |
| 224 | self.focus_stack().push(wname) |
| 225 | self.refresh() |
| 226 | self.view_changed() |
| 227 | self.focus_changed() |
| 228 | |
| 229 | def pop(self) -> None: |
| 230 | """ |
no test coverage detected