1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
2015-05-20 19:02:17 +07:00

15 lines
396 B
Python

#!/usr/bin/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)