Closed eliasdorneles closed 4 years ago
It would be nice if we could run pudb3 -m some_module .... similarly to how we can do with pdb (python -m pdb -m some_module).
pudb3 -m some_module ....
python -m pdb -m some_module
This is useful when you want to debug some code not necessarily written by you, which you must run with python -m module.
python -m module
I agree. I'd be happy to take a patch.
Closing this, now that #390 is merged :)
It would be nice if we could run
pudb3 -m some_module ....
similarly to how we can do with pdb (python -m pdb -m some_module
).This is useful when you want to debug some code not necessarily written by you, which you must run with
python -m module
.