pdbr
pdbr copied to clipboard
pdb + Rich library
https://github.com/cansarigol/pdbr/runs/5351140347?check_suite_focus=true ```=================================== ERRORS ==================================== ____________________ ERROR collecting tests/test_magic.py _____________________ ImportError while importing test module 'D:\a\pdbr\pdbr\tests\test_magic.py'. Hint: make sure your test modules/packages have valid Python names. Traceback: c:\hostedtoolcache\windows\python\3.7.9\x64\lib\importlib\__init__.py:127: in import_module return...
Are there any features missing from ipdb? This seems like a full replacement for ipdb (which is awesome). If that's the case, hopefully we can get the ipython documentation updated...
Hi, Would you be open to add an environment variable to point towards which file should be use for `pdbr` config, since now it looks like that the invocation must...
updates: - [github.com/jendrikseipp/vulture: v2.5 → v2.6](https://github.com/jendrikseipp/vulture/compare/v2.5...v2.6) - [github.com/psf/black: 22.6.0 → 22.8.0](https://github.com/psf/black/compare/22.6.0...22.8.0)
As seen in screenshot below, the code snippets are not colored in any way, I would have expected at least the filename to be colored. At the same time ipdb...
updates: - [github.com/pre-commit/pre-commit-hooks: v4.5.0 → v4.6.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.5.0...v4.6.0) - [github.com/jendrikseipp/vulture: v2.10 → v2.11](https://github.com/jendrikseipp/vulture/compare/v2.10...v2.11) - [github.com/astral-sh/ruff-pre-commit: v0.1.13 → v0.6.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.1.13...v0.6.2) - [github.com/psf/black: 23.12.1 → 24.8.0](https://github.com/psf/black/compare/23.12.1...24.8.0)
updates: - [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v5.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.6.0...v5.0.0) - [github.com/jendrikseipp/vulture: v2.11 → v2.13](https://github.com/jendrikseipp/vulture/compare/v2.11...v2.13) - [github.com/astral-sh/ruff-pre-commit: v0.6.5 → v0.6.9](https://github.com/astral-sh/ruff-pre-commit/compare/v0.6.5...v0.6.9) - [github.com/psf/black: 24.8.0 → 24.10.0](https://github.com/psf/black/compare/24.8.0...24.10.0)
updates: - [github.com/pre-commit/pre-commit-hooks: v5.0.0 → v6.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v5.0.0...v6.0.0) - [github.com/astral-sh/ruff-pre-commit: v0.9.3 → v0.14.8](https://github.com/astral-sh/ruff-pre-commit/compare/v0.9.3...v0.14.8) - https://github.com/psf/black → https://github.com/psf/black-pre-commit-mirror - [github.com/psf/black-pre-commit-mirror: 24.10.0 → 25.12.0](https://github.com/psf/black-pre-commit-mirror/compare/24.10.0...25.12.0)
I use pdbr together with pytest. I have set up the ini option in pyproject.toml with: ``` [tool.pytest.ini_options] addopts = "--pdbcls=pdbr:RichPdb" ``` However, when I drop into the debugger, I...