summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-03-30 23:00:32 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-03-30 23:00:32 (GMT)
commit7899acfc23c6262cea8f69bda36cf256cdfc3501 (patch)
treee69ab3896fd2048781e4ecc98af68476a0ddc975 /Misc
parent8c5b74802606403208551e0ec579cc4266fc92dd (diff)
downloadcpython-7899acfc23c6262cea8f69bda36cf256cdfc3501.zip
cpython-7899acfc23c6262cea8f69bda36cf256cdfc3501.tar.gz
cpython-7899acfc23c6262cea8f69bda36cf256cdfc3501.tar.bz2
Issue #11618: Fix the timeout logic in threading.Lock.acquire() under
Windows.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1047046..5cc5963 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,8 @@ Core and Builtins
Library
-------
+- Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows.
+
- Issue #11256: Fix inspect.getcallargs on functions that take only keyword
arguments.