diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-07 15:59:11 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-07 15:59:11 (GMT) |
commit | a514ea32b25a8c3a72dce3e7f8b411ea0ee24e89 (patch) | |
tree | e2f31ea5ccb063fc68f59cf5de865c427277017f /Lib/pstats.py | |
parent | 948af23a77c41bfa77da89aa138d8a4f4111df99 (diff) | |
parent | 2ef4584e6d94e032e3922ee350c8b399924baeba (diff) | |
download | cpython-a514ea32b25a8c3a72dce3e7f8b411ea0ee24e89.zip cpython-a514ea32b25a8c3a72dce3e7f8b411ea0ee24e89.tar.gz cpython-a514ea32b25a8c3a72dce3e7f8b411ea0ee24e89.tar.bz2 |
Merge 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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py index 13d944c..268cc01 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"), } |