MCPcopy Index your code
hub / github.com/ipython/ipython / _show_ignored_modules

Method _show_ignored_modules

IPython/core/debugger.py:1312–1317  ·  view source on GitHub ↗

Display currently ignored modules.

(self)

Source from the content-addressed store, hash-verified

1310 do_u = do_up
1311
1312 def _show_ignored_modules(self):
1313 """Display currently ignored modules."""
1314 if self.skip:
1315 print(f"Currently ignored modules: {sorted(self.skip)}")
1316 else:
1317 print("No modules are currently ignored.")
1318
1319 def do_ignore_module(self, arg):
1320 """ignore_module <module_name>

Callers 2

do_ignore_moduleMethod · 0.95
do_unignore_moduleMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected