This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author methane
Recipients brett.cannon, christian.heimes, gvanrossum, lukasz.langa, methane, rhettinger, serhiy.storchaka, terry.reedy, vstinner
Date 2017-10-04.01:02:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507078931.25.0.213398074469.issue31415@psf.upfronthosting.co.za>
In-reply-to
Content
https://github.com/python/cpython/blob/27c623c845dd6e4b8e1782666ca3a956636da266/Modules/timemodule.c#L80-L112

time module has perf_counter implementation based on QueryPerformanceCounter().

Could we change PyTime_GetMonotonicClock implementation to use it on Windows?

I don't want to so much code to import.c.  But if pytime.c has nice clock
for fine grained monotonic performance counter, I want to use it in
import.c.
History
Date User Action Args
2017-10-04 01:02:11methanesetrecipients: + methane, gvanrossum, brett.cannon, rhettinger, terry.reedy, vstinner, christian.heimes, lukasz.langa, serhiy.storchaka
2017-10-04 01:02:11methanesetmessageid: <1507078931.25.0.213398074469.issue31415@psf.upfronthosting.co.za>
2017-10-04 01:02:11methanelinkissue31415 messages
2017-10-04 01:02:10methanecreate