[issue32512] Add an option to profile to run library module as a script

2018-11-05 Thread Mario Corchero
Change by Mario Corchero : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue32512] Add an option to profile to run library module as a script

2018-11-05 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset ad1a25f499362eaf9cbfcafa0b8e2454eb43dcf1 by Nick Coghlan (Mario Corchero) in branch 'master': bpo-32512: Add -m option to profile for profiling modules (#5132) https://github.com/python/cpython/commit/ad1a25f499362eaf9cbfcafa0b8e2454eb43dcf1

[issue32512] Add an option to profile to run library module as a script

2018-01-07 Thread Mario Corchero
Mario Corchero added the comment: Related issue for improved executable module support for standard library modules that run other scripts: https://bugs.python.org/issue9325 -- ___ Python tracker

[issue32512] Add an option to profile to run library module as a script

2018-01-07 Thread Eric N. Vander Weele
Change by Eric N. Vander Weele : -- nosy: +ericvw ___ Python tracker ___ ___

[issue32512] Add an option to profile to run library module as a script

2018-01-07 Thread Mario Corchero
Change by Mario Corchero : -- keywords: +patch pull_requests: +4993 stage: -> patch review ___ Python tracker ___

[issue32512] Add an option to profile to run library module as a script

2018-01-07 Thread Mario Corchero
New submission from Mario Corchero : Add an option to profile to be able to do `python3 -m profile -m my.module.name` to be able to profile the module the same way cProfile allows since issue 21862 -- components: Library (Lib) messages: 309627 nosy: mariocj89