timbunce / devel-nytprof

Devel::NYTProf is a powerful feature-rich source code profiler for Perl. (Mostly in maintenance mode, so PRs are much more likely to be acted upon than Issues.)
http://blog.timbunce.org/tag/nytprof/
67 stars 51 forks source link

Numbers which ends 5s are sorted like µs #121

Closed pichi closed 6 years ago

pichi commented 6 years ago

All numbers in seconds which ends 5 are sorted like it is actually in microseconds. Tested in Chrome (Version 66.0.3359.117 (Official Build) beta (64-bit)) and Firefox (59.0.2 (64-bit)).

There is a fix #120 ready for merge.

pichi commented 6 years ago

BTW, there is how to fix existing reports:

grep -rlF '/[µ\\xB5]s/' . | xargs -I '{}' sed -i 's./\[µ\\\\xB5\]s/./[µ\\xB5]s/.' '{}'
timbunce commented 6 years ago

Closed by #120.