diff options
| author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-07 15:57:21 (GMT) |
|---|---|---|
| committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-07 15:57:21 (GMT) |
| commit | 75033a38d97139fc105c553b852626808459868d (patch) | |
| tree | c335161fee43d69de9a8d8e1bde9ebfae2cc26c4 /Lib | |
| parent | 313dc9b8126186097f74b91d8333dab450b9786e (diff) | |
| download | cpython-75033a38d97139fc105c553b852626808459868d.zip cpython-75033a38d97139fc105c553b852626808459868d.tar.gz cpython-75033a38d97139fc105c553b852626808459868d.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 3dc61d6..a7b6dc9 100644 --- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -178,7 +178,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"), } |
