[proxy] github.com← back | site home | direct (HTTPS) ↗ | proxy home | ◑ dark◐ light

bpo-32206: Pdb can now run modules by mariocj89 · Pull Request #4752 · python/cpython

mariocj89

and others added 6 commits

December 3, 2017 13:31
Since PEP 338 we can run python modules as a script via `python -m
module_name` but there is no way to run pdb on those.

The proposal is to add a new argument "-m" to the pdb module to allow
users to run `python -m pdb -m my_module_name`.

The test is validating where pdb starts therefore the part that is
failing (checking modulename "/" file) is not relevant on that test

Merged