summaryrefslogtreecommitdiffstats
path: root/Lib/pstats.py
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-11-20 17:09:14 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-11-20 17:09:14 (GMT)
commit8284bd6a63fefcbb960068d92ea892f91431a6dc (patch)
tree11267aa64141fd9bf6f8f22545e6ed4ea0c8066f /Lib/pstats.py
parentd2e4a17036da7c84afb04748f011456a3ba80ded (diff)
downloadcpython-8284bd6a63fefcbb960068d92ea892f91431a6dc.zip
cpython-8284bd6a63fefcbb960068d92ea892f91431a6dc.tar.gz
cpython-8284bd6a63fefcbb960068d92ea892f91431a6dc.tar.bz2
Merged revisions 86580 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86580 | senthil.kumaran | 2010-11-21 01:02:50 +0800 (Sun, 21 Nov 2010) | 3 lines Fix issue10377 - Output from pstats - it is just secs (i.e, wallclock time) and not CPU time. ........
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 c019cd1..9ccd75b 100644
--- a/Lib/pstats.py
+++ b/Lib/pstats.py
@@ -359,7 +359,7 @@ class Stats:
print >> self.stream, indent, self.total_calls, "function calls",
if self.total_calls != self.prim_calls:
print >> self.stream, "(%d primitive calls)" % self.prim_calls,
- print >> self.stream, "in %.3f CPU seconds" % self.total_tt
+ print >> self.stream, "in %.3f seconds" % self.total_tt
print >> self.stream
width, list = self.get_print_list(amount)
if list: