From: Charles-François Natali Date: Sat, 7 Jan 2012 17:26:39 +0000 (+0100) Subject: Issue #13502: threading: Fix a race condition in Event.wait() that made it X-Git-Tag: v3.3.0a1~463 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61d28d6a740dac9705ae5b1efc7cb67a9a110bf1;p=thirdparty%2FPython%2Fcpython.git Issue #13502: threading: Fix a race condition in Event.wait() that made it return False when the event was set and cleared right after. --- 61d28d6a740dac9705ae5b1efc7cb67a9a110bf1 diff --cc Misc/NEWS index 274465a146c5,9212f9e62293..05664f67679d --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -422,11 -97,9 +422,14 @@@ Core and Builtin Library ------- + - Issue #13502: threading: Fix a race condition in Event.wait() that made it + return False when the event was set and cleared right after. + +- Issue #9993: When the source and destination are on different filesystems, + and the source is a symlink, shutil.move() now recreates a symlink on the + destination instead of copying the file contents. Patch by Jonathan Niehof + and Hynek Schlawack. + - Issue #12926: Fix a bug in tarfile's link extraction. - Issue #13696: Fix the 302 Relative URL Redirection problem.