| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
I think this closes #1665. The proposal there was to expose skip option from https://docs.python.org/3/library/bdb.html but I think this achieves similar end result. |
Sorry, something went wrong.
There was a problem hiding this comment.
Thank you for the PR @ktowen!
This looks mostly fine, the only thing missing is tests. Can you add tests for both ignore_module and unignore_module with and without wildcard usage?
Sorry, something went wrong.
Co-authored-by: Michał Krassowski <5832902+krassowski@users.noreply.github.com>
There was a problem hiding this comment.
Thank you!
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
This PR adds two new commands to ignore (and unignore) specific modules when navigating frames in the IPython debugger, similar to how the debugger already skips hidden frames. It will work with all the commands that implies moving between frames like up, down, step and next.
It is useful when you don't want the debugger to enter third party code.
Closes #1665