From: Antoine Pitrou Date: Wed, 30 Mar 2011 23:03:10 +0000 (+0200) Subject: Issue #11618: Fix the timeout logic in threading.Lock.acquire() under X-Git-Tag: v3.3.0a1~2726 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d85456279f129e19a3f4c8ba0b3d05f5bdbfca1d;p=thirdparty%2FPython%2Fcpython.git Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. --- d85456279f129e19a3f4c8ba0b3d05f5bdbfca1d diff --cc Misc/NEWS index f276cb3a138e,5cc5963d6ee4..33d9997f75f5 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -87,9 -49,8 +87,11 @@@ Core and Builtin Library ------- + - Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. + +- Removed the 'strict' argument to email.parser.Parser, which has been + deprecated since Python 2.4. + - Issue #11256: Fix inspect.getcallargs on functions that take only keyword arguments.