mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-27 03:00:36 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@111 e7d03fd6-7b0d-0410-9947-9c21f3af8025
4 lines
124 B
Python
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)
|