linkchecker/test/viewprof.py
2000-06-12 12:59:34 +00:00

4 lines
124 B
Python

import pstats,glob
for file in glob.glob('*.prof'):
pstats.Stats(file).strip_dirs().sort_stats("time").print_stats(20)