]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-41299: QueryPerformanceFrequency() cannot fail (GH-28552)
authorVictor Stinner <vstinner@python.org>
Fri, 24 Sep 2021 22:31:56 +0000 (00:31 +0200)
committerGitHub <noreply@github.com>
Fri, 24 Sep 2021 22:31:56 +0000 (00:31 +0200)
commitf35ddf24227e834c9b6b39ad23a0ec382b4de48b
tree28917201368bc58cacdf2dc46007713d659b3c4d
parent7c801e0fa603b155eab3fd19698aa90854ac5a7b
bpo-41299: QueryPerformanceFrequency() cannot fail (GH-28552)

py_win_perf_counter_frequency() no longer checks for
QueryPerformanceFrequency() failure. According to the
QueryPerformanceFrequency() documentation, the function can no longer
fails since Windows XP.
Python/pytime.c