[issue36575] Use _PyTime_GetPerfCounter() in lsprof

2019-04-11 Thread Inada Naoki
Inada Naoki added the comment: New changeset 536a35b3f14888999f1ffa5be7239d0c26b73d7a by Inada Naoki in branch 'master': bpo-36575: lsprof: Use _PyTime_GetPerfCounter() (GH-8378) https://github.com/python/cpython/commit/536a35b3f14888999f1ffa5be7239d0c26b73d7a -- __

[issue36575] Use _PyTime_GetPerfCounter() in lsprof

2019-04-11 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue36575] Use _PyTime_GetPerfCounter() in lsprof

2019-04-09 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue36575] Use _PyTime_GetPerfCounter() in lsprof

2019-04-09 Thread Inada Naoki
Change by Inada Naoki : -- keywords: +patch pull_requests: +12670 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue36575] Use _PyTime_GetPerfCounter() in lsprof

2019-04-09 Thread Inada Naoki
New submission from Inada Naoki : Current lsprof uses `gettimeofday` on non-Windows. _PyTime_GetPerfCounter() is better time for profiling. -- components: Library (Lib) messages: 339747 nosy: inada.naoki priority: normal severity: normal status: open title: Use _PyTime_GetPerfCounter()