Jupyter tracebacks fix
This release fixes tracebacks in Jupyter which didn't show the code.
Additionally tracebacks have two new parameters to hide double underscore and single underscore locals. See the changelog for details
[13.1.0] - 2023-01-14
Fixed
- Fixed wrong filenames in Jupyter tracebacks #2271
Added
- Added locals_hide_dunder and locals_hide_sunder to Tracebacks, to hide double underscore and single underscore locals. #2754
Changed
- Tracebacks will now hide double underscore names from locals by default. Set
locals_hide_dunder=False
to restore previous behaviour.