Jan Murre

Results 5 issues of Jan Murre

When in a pdb debugger session, a new session (e.g. calling an arbitrary function `foo`) can be started with `(Pdb+) debug foo()`. However, this results in an error: *** RecursionError:...

The DatabaseJanitor now only accepts keyword arguments. Chore that needs to be done: * [ ] Add newsfragment `pipenv run towncrier create [issue_number].[type].rst` Types are defined in the pyproject.toml, issue_number...

My router is generate from a factory function like this: ``` def api_router_factory(prefix, schema, model): router = APIRouter(prefix=prefix, responses={404: {"description": "Not found"}}) router.get("/", response_model=list[schema])( cache(expire=100)( multi_fetch_router_factory(multi_fetch_crud_factory(model)) ) ) return router...

Until python 3.12 the vi keybindings in the terminal (`set editing-mode vi` in ~/.inputrc) also worked in pdbpp. Not anymore in python3.13. I know python 3.13 has a new repl...

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...