]> granicus.if.org Git - python/commitdiff
Fix issue10377 - Output from pstats - it is just secs (i.e, wallclock time) and not...
authorSenthil Kumaran <orsenthil@gmail.com>
Sat, 20 Nov 2010 17:02:50 +0000 (17:02 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Sat, 20 Nov 2010 17:02:50 +0000 (17:02 +0000)
Lib/pstats.py

index 17d727905f02c2c5b30cfe2546b719eba4a21f07..f5c592b81ba2a29359d0cd84dc97d556a47cd11a 100644 (file)
@@ -348,7 +348,7 @@ class Stats:
         print(indent, self.total_calls, "function calls", end=' ', file=self.stream)
         if self.total_calls != self.prim_calls:
             print("(%d primitive calls)" % self.prim_calls, end=' ', file=self.stream)
-        print("in %.3f CPU seconds" % self.total_tt, file=self.stream)
+        print("in %.3f seconds" % self.total_tt, file=self.stream)
         print(file=self.stream)
         width, list = self.get_print_list(amount)
         if list: