summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRyan Hileman <lunixbochs@gmail.com>2021-06-07 20:26:02 (GMT)
committerGitHub <noreply@github.com>2021-06-07 20:26:02 (GMT)
commit449e6f0ef395231e3abe467f910b02d7f075c27f (patch)
treee35ceef7ead7421c8fa974a118367b2bf1824e89 /Misc
parent2ab27c4af4ddf7528e1375e77c787c7fbb09b5e6 (diff)
downloadcpython-449e6f0ef395231e3abe467f910b02d7f075c27f.zip
cpython-449e6f0ef395231e3abe467f910b02d7f075c27f.tar.gz
cpython-449e6f0ef395231e3abe467f910b02d7f075c27f.tar.bz2
bpo-41299: Reduce lag in Windows threading timeouts by using a higher precision time source (GH-26568)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Windows/2021-06-06-16-36-13.bpo-41299.Rg-vb_.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2021-06-06-16-36-13.bpo-41299.Rg-vb_.rst b/Misc/NEWS.d/next/Windows/2021-06-06-16-36-13.bpo-41299.Rg-vb_.rst
new file mode 100644
index 0000000..71f700f
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2021-06-06-16-36-13.bpo-41299.Rg-vb_.rst
@@ -0,0 +1 @@
+Fix 16ms jitter when using timeouts in :mod:`threading`, such as with :meth:`threading.Lock.acquire` or :meth:`threading.Condition.wait`.