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.
|
|
|
|
|
#
|
2024-01-03 23:32:44 +01:00
|
|
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
2019-06-14 17:43:41 +02:00
|
|
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
|
|
|
|
# (acting for and on behalf of Oklahoma State University)
|
|
|
|
|
# All rights reserved.
|
2019-04-26 21:21:50 +02:00
|
|
|
#
|
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-10-03 01:26:02 +02:00
|
|
|
# p.sort_stats("cumulative")
|
2019-01-30 20:15:47 +01:00
|
|
|
p.sort_stats("tottime")
|
2019-10-03 01:26:02 +02:00
|
|
|
# p.print_stats(50)
|
2019-01-30 17:42:25 +01:00
|
|
|
p.print_stats()
|
2018-12-07 17:56:40 +01:00
|
|
|
|