MCPcopy Create free account
hub / github.com/ipython/ipython / do_skip_hidden

Method do_skip_hidden

IPython/core/debugger.py:517–525  ·  view source on GitHub ↗

Change whether or not we should skip frames with the __tracebackhide__ attribute.

(self, arg)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected