bpo-32512: Add -m option to profile for profiling modules by mariocj89 · Pull Request #5132 · python/cpython

@mariocj89 mariocj89 changed the title bpo-32512: Add -m option to profile for profiling modules bpo-32512: Add -m option to profile for profiling modules (WIP, adding tests)

Jan 7, 2018

@mariocj89 mariocj89 changed the title bpo-32512: Add -m option to profile for profiling modules (WIP, adding tests) bpo-32512: Add -m option to profile for profiling modules

Jan 7, 2018

matrixise

matrixise

matrixise

The new option in the CLI of the profile module allow to profile
executable modules. This change follows the same implementation as the
one already present in `cProfile`.
As the argument is now present on both modules, move the tests to the
common test case to be run with profile as well.

ncoghlan