Alexandre Dias added the comment:
Could I get an update on this please?
--
___
Python tracker
<http://bugs.python.org/issue18795>
___
___
Python-bugs-list mailin
Alexandre Dias added the comment:
Average time would indeed be a better description.
As for its usefulness: let's say that for example you would want to find the
function in which your code spends the most time on average, in order to later
optimise said function. If one of the cal
Alexandre Dias added the comment:
It does support sorting by total time and cumulative time spent on a function,
but not by the time per each call of that function.
I've uploaded a diff of the patch.
-Alexandre
--
versions: +Python 3.4 -Python 2.7
Added file: http://bugs.pytho
New submission from Alexandre Dias:
Me and a couple of colleagues have stumbled upon the need to sometimes sort our
profiling stats by time (cumulative and total) per call. I believe this could
be useful to other people, and have therefore opened this patch.
Thanks for taking the time to look