diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-07 16:19:17 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-07 16:19:17 (GMT) |
commit | 3e5dae0ee290a2f16e14e8f9af01dd0214063f21 (patch) | |
tree | d2e6d25311763d70986c493efa7458a1713dcf8f /Lib/pstats.py | |
parent | a514ea32b25a8c3a72dce3e7f8b411ea0ee24e89 (diff) | |
parent | c3e5b10ae76c3ffe8672e91a5478a19e35b60220 (diff) | |
download | cpython-3e5dae0ee290a2f16e14e8f9af01dd0214063f21.zip cpython-3e5dae0ee290a2f16e14e8f9af01dd0214063f21.tar.gz cpython-3e5dae0ee290a2f16e14e8f9af01dd0214063f21.tar.bz2 |
Merge issue #14900: Add aliases for sorting params for pstat to follow column names from pstat output.
Patch by Arne Babenhauserheide.
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r-- | Lib/pstats.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py index 268cc01..6a77605 100644 --- 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"), + "cumtime" : (((3,-1), ), "cumulative time"), "cumulative": (((3,-1), ), "cumulative time"), "file" : (((4, 1), ), "file name"), + "filename" : (((4, 1), ), "file name"), "line" : (((5, 1), ), "line number"), "module" : (((4, 1), ), "file name"), "name" : (((6, 1), ), "function name"), @@ -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"), } def get_sort_arg_defs(self): |