cpython: 7b8b1b30e5f8 (original) (raw)
--- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -159,8 +159,11 @@ class Stats: # along with some printable description sort_arg_dict_default = { "calls" : (((1,-1), ), "call count"),
"ncalls" : (((1,-1), ), "call count"),[](#l1.7)
"cumtime" : (((3,-1), ), "cumulative time"),[](#l1.8) "cumulative": (((3,-1), ), "cumulative time"),[](#l1.9) "file" : (((4, 1), ), "file name"),[](#l1.10)
"filename" : (((4, 1), ), "file name"),[](#l1.11) "line" : (((5, 1), ), "line number"),[](#l1.12) "module" : (((4, 1), ), "file name"),[](#l1.13) "name" : (((6, 1), ), "function name"),[](#l1.14)
@@ -168,6 +171,7 @@ class Stats: "pcalls" : (((0,-1), ), "primitive call count"), "stdname" : (((7, 1), ), "standard name"), "time" : (((2,-1), ), "internal time"),
"tottime" : (((2,-1), ), "internal time"),[](#l1.19) }[](#l1.20)