diff options
author | 2012-10-07 18:59:11 +0300 | |
---|---|---|
committer | 2012-10-07 18:59:11 +0300 | |
commit | a514ea32b25a8c3a72dce3e7f8b411ea0ee24e89 (patch) | |
tree | e2f31ea5ccb063fc68f59cf5de865c427277017f /Lib | |
parent | Issue #15888: fixing problems in ipaddress doctests. Patch by Chris Jerdonek (diff) | |
parent | Issue #14900: Distuguish call count and primitive call count in pstat output. (diff) | |
download | cpython-a514ea32b25a8c3a72dce3e7f8b411ea0ee24e89.tar.gz cpython-a514ea32b25a8c3a72dce3e7f8b411ea0ee24e89.tar.bz2 cpython-a514ea32b25a8c3a72dce3e7f8b411ea0ee24e89.zip |
Merge 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 13d944c154a..268cc011f8c 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"), } |