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 lunixbochs2
Recipients lunixbochs2, paul.moore, steve.dower, tim.golden, zach.ware
Date 2021-06-06.22:05:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623017107.78.0.286257337073.issue44328@roundup.psfhosted.org>
In-reply-to
Content
Related to https://bugs.python.org/issue41299#msg395220

Presumably `time.monotonic()` on Windows historically used GetTickCount64() because QueryPerformanceCounter() could fail. However, that hasn't been the case since Windows XP: https://docs.microsoft.com/en-us/windows/win32/api/profileapi/nf-profileapi-queryperformancecounter

> On systems that run Windows XP or later, the function will always succeed and will thus never return zero

I've run into issues with this when porting python-based applications to Windows. On other platforms, time.monotonic() was a decent precision so I used it. When I ported to Windows, I had to replace all of my time.monotonic() calls with time.perf_counter(). I would pretty much never knowingly call time.monotonic() if I knew ahead of time it could be quantized to 16ms.

My opinion is that the GetTickCount64() monotonic time code in CPython should be removed entirely and only the QueryPerformanceCounter() path should be used.

I also think some of the failure checks could be removed from QueryPerformanceCounter() / QueryPerformanceFrequency(), as they're documented to never fail in modern Windows and CPython has been dropping support for older versions of Windows, but that's less of a firm opinion.
History
Date User Action Args
2021-06-06 22:05:07lunixbochs2setrecipients: + lunixbochs2, paul.moore, tim.golden, zach.ware, steve.dower
2021-06-06 22:05:07lunixbochs2setmessageid: <1623017107.78.0.286257337073.issue44328@roundup.psfhosted.org>
2021-06-06 22:05:07lunixbochs2linkissue44328 messages
2021-06-06 22:05:07lunixbochs2create