(self)
| 489 | self.show_source(index) |
| 490 | |
| 491 | def show_stack_frame(self): |
| 492 | index = self.listbox.index("active") |
| 493 | if 0 <= index < len(self.stack): |
| 494 | self.gui.show_frame(self.stack[index]) |
| 495 | |
| 496 | def show_source(self, index): |
| 497 | if not (0 <= index < len(self.stack)): |
nothing calls this directly
no test coverage detected