[Python-checkins] cpython (3.2): Issue #14900: Add aliases for sorting params for pstat to follow column names
andrew.svetlov
python-checkins at python.org
Sun Oct 7 18:23:05 CEST 2012
http://hg.python.org/cpython/rev/511a3c51731e
changeset: 79577:511a3c51731e
branch: 3.2
parent: 79571:410e92589164
user: Andrew Svetlov <andrew.svetlov at gmail.com>
date: Sun Oct 07 19:18:39 2012 +0300
summary:
Issue #14900: Add aliases for sorting params for pstat to follow column names from pstat output.
Patch by Arne Babenhauserheide.
files:
Lib/pstats.py | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/Lib/pstats.py b/Lib/pstats.py
--- a/Lib/pstats.py
+++ b/Lib/pstats.py
@@ -159,8 +159,11 @@
# 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 @@
"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):
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list