1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
Files
rzzzwilson.pymlac/pymlac/stats.py
2022-01-02 20:29:25 +11:00

14 lines
221 B
Python
Executable File

"""
Dumps statistics from 'pymlac' run.
"""
import pstats
p = pstats.Stats('profile.out')
#p.strip_dirs().sort_stats(-1).print_stats()
#p.sort_stats('cumulative').print_stats(20)
p.sort_stats('time').print_stats(20)