summaryrefslogtreecommitdiff
path: root/Lib/pstats.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-07 18:58:42 +0300
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-07 18:58:42 +0300
commit2ef4584e6d94e032e3922ee350c8b399924baeba (patch)
tree9ee54bf3efeccea71f083620cd689fb7ed3877d3 /Lib/pstats.py
parent138a314d1a4e46543ee5394bd87f8eeb06c6bb6e (diff)
downloadcpython-git-2ef4584e6d94e032e3922ee350c8b399924baeba.tar.gz
Issue #14900: Distuguish call count and primitive call count in pstat output.
Patch by Arne Babenhauserheide.
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r--Lib/pstats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py
index 3f0add2c65..a41962aef6 100644
--- a/Lib/pstats.py
+++ b/Lib/pstats.py
@@ -165,7 +165,7 @@ class Stats:
"module" : (((4, 1), ), "file name"),
"name" : (((6, 1), ), "function name"),
"nfl" : (((6, 1),(4, 1),(5, 1),), "name/file/line"),
- "pcalls" : (((0,-1), ), "call count"),
+ "pcalls" : (((0,-1), ), "primitive call count"),
"stdname" : (((7, 1), ), "standard name"),
"time" : (((2,-1), ), "internal time"),
}