From: Victor Stinner Date: Tue, 17 Oct 2023 09:34:04 +0000 (+0200) Subject: gh-110695: test_asyncio uses 50 ms for clock resolution (#110952) X-Git-Tag: v3.13.0a2~441 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a9fba825f8aaee4ea9b3429875c6c6324d0dee0;p=thirdparty%2FPython%2Fcpython.git gh-110695: test_asyncio uses 50 ms for clock resolution (#110952) Before utils.CLOCK_RES constant was added (20 ms), test_asyncio already used 50 ms. --- diff --git a/Lib/test/test_asyncio/utils.py b/Lib/test/test_asyncio/utils.py index e1101bf42eb2..83fac4a26aff 100644 --- a/Lib/test/test_asyncio/utils.py +++ b/Lib/test/test_asyncio/utils.py @@ -37,9 +37,9 @@ from test.support import threading_helper # Use the maximum known clock resolution (gh-75191, gh-110088): Windows -# GetTickCount64() has a resolution of 15.6 ms. Use 20 ms to tolerate rounding +# GetTickCount64() has a resolution of 15.6 ms. Use 50 ms to tolerate rounding # issues. -CLOCK_RES = 0.020 +CLOCK_RES = 0.050 def data_file(*filename):