mirror of
https://github.com/python/cpython.git
synced 2025-08-19 08:11:46 +00:00
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. ........
This commit is contained in:
parent
d2e4a17036
commit
8284bd6a63
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ class Stats:
|
||||||
print >> self.stream, indent, self.total_calls, "function calls",
|
print >> self.stream, indent, self.total_calls, "function calls",
|
||||||
if self.total_calls != self.prim_calls:
|
if self.total_calls != self.prim_calls:
|
||||||
print >> self.stream, "(%d primitive 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
|
print >> self.stream
|
||||||
width, list = self.get_print_list(amount)
|
width, list = self.get_print_list(amount)
|
||||||
if list:
|
if list:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue