Change whether or not we should skip frames with the __tracebackhide__ attribute.
(self, arg)
| 515 | pass |
| 516 | |
| 517 | def do_skip_hidden(self, arg): |
| 518 | """ |
| 519 | Change whether or not we should skip frames with the |
| 520 | __tracebackhide__ attribute. |
| 521 | """ |
| 522 | if arg.strip().lower() in ("true", "yes"): |
| 523 | self.skip_hidden = True |
| 524 | elif arg.strip().lower() in ("false", "no"): |
| 525 | self.skip_hidden = False |
| 526 | |
| 527 | def do_list(self, arg): |
| 528 | """Print lines of code from the current stack frame |
nothing calls this directly
no outgoing calls
no test coverage detected