2019-01-30 17:42:25 +01:00
|
|
|
#!/usr/bin/env python3
|
2019-04-26 21:21:50 +02:00
|
|
|
# See LICENSE for licensing information.
|
|
|
|
|
#
|
|
|
|
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
|
|
|
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
|
|
|
|
#(acting for and on behalf of Oklahoma State University)
|
|
|
|
|
#All rights reserved.
|
|
|
|
|
#
|
2018-12-07 17:56:40 +01:00
|
|
|
import pstats
|
2019-01-30 17:42:25 +01:00
|
|
|
p = pstats.Stats("profile.dat")
|
2018-12-07 17:56:40 +01:00
|
|
|
p.strip_dirs()
|
2019-01-30 20:15:47 +01:00
|
|
|
#p.sort_stats("cumulative")
|
|
|
|
|
p.sort_stats("tottime")
|
2019-01-30 17:42:25 +01:00
|
|
|
#p.print_stats(50)
|
|
|
|
|
p.print_stats()
|
2018-12-07 17:56:40 +01:00
|
|
|
|