[issue10377] cProfile incorrectly labels its output

2010-11-20 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in r86580 (py3k), r86581 and r86582. -- components: +Library (Lib) resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue10377] cProfile incorrectly labels its output

2010-11-12 Thread Senthil Kumaran
Senthil Kumaran added the comment: On Tue, Nov 09, 2010 at 07:15:57PM +, Jean-Paul Calderone wrote: > >>> cProfile.run("import time; time.sleep(1)") > 4 function calls in 1.012 CPU seconds > > It is not the case that the profiled code uses >1 CPU seconds. It > spends the entire ti

[issue10377] cProfile incorrectly labels its output

2010-11-11 Thread Éric Araujo
Changes by Éric Araujo : -- versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue10377] cProfile incorrectly labels its output

2010-11-09 Thread Jean-Paul Calderone
New submission from Jean-Paul Calderone : Consider this transcript: >>> cProfile.run("import time; time.sleep(1)") 4 function calls in 1.012 CPU seconds Ordered by: standard name ncalls tottime percall cumtime percall filename:lineno(function) 10.0110.011