bundles / IPython 9.10.0 / IPython / core / debugger / Pdb / do_ignore_module
function
IPython.core.debugger:Pdb.do_ignore_module
source: /IPython/core/debugger.py :1269
Signature
def do_ignore_module ( self , arg ) Summary
ignore_module <module_name>
Extended Summary
Add a module to the list of modules to skip when navigating frames. When a module is ignored, the debugger will automatically skip over frames from that module.
Supports wildcard patterns using fnmatch syntax:
Usage:
ignore_module threading # Skip threading module frames ignore_module syncio.\* # Skip all asyncio submodules ignore_module *.tests # Skip all test modules ignore_module # List currently ignored modules
Aliases
-
IPython.core.debugger.Pdb.do_ignore_module