diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-07 15:58:42 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-07 15:58:42 (GMT) |
commit | 2ef4584e6d94e032e3922ee350c8b399924baeba (patch) | |
tree | 9ee54bf3efeccea71f083620cd689fb7ed3877d3 /Lib | |
parent | 138a314d1a4e46543ee5394bd87f8eeb06c6bb6e (diff) | |
download | cpython-2ef4584e6d94e032e3922ee350c8b399924baeba.zip cpython-2ef4584e6d94e032e3922ee350c8b399924baeba.tar.gz cpython-2ef4584e6d94e032e3922ee350c8b399924baeba.tar.bz2 |
Issue #14900: Distuguish call count and primitive call count in pstat output.
Patch by Arne Babenhauserheide.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/pstats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py index 3f0add2..a41962a 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"), } |