1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
2018-07-23 17:26:56 +07:00

14 lines
221 B
Python

"""
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)