在分析Python脚本时,按percallsortingcProfile输出

我正在使用python -m cProfile -s calls myscript.py

python -m cProfile -s percall myscript.py不起作用。

Python文档中提到“查看Stats文档中的有效sorting值”: http : //docs.python.org/library/profile.html#module-cProfile ,我找不到。

-s只使用sort_stats下的键。

 'calls' (call count) 'cumulative' (cumulative time) 'cumtime' (cumulative time) 'file' (file name) 'filename' (file name) 'module' (file name) 'ncalls' (call count) 'pcalls' (primitive call count) 'line' (line number) 'name' (function name) 'nfl' (name/file/line) 'stdname' (standard name) 'time' (internal time) 'tottime' (internal time)