aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-07 18:59:11 +0300
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-07 18:59:11 +0300
commita514ea32b25a8c3a72dce3e7f8b411ea0ee24e89 (patch)
treee2f31ea5ccb063fc68f59cf5de865c427277017f /Lib/pstats.py
parentIssue #15888: fixing problems in ipaddress doctests. Patch by Chris Jerdonek (diff)
parentIssue #14900: Distuguish call count and primitive call count in pstat output. (diff)
downloadcpython-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/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 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"),
}