summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2012-01-07 17:24:56 (GMT)
committerCharles-François Natali <neologix@free.fr>2012-01-07 17:24:56 (GMT)
commitded0348c08f298fda4426eb2a62cc3d50eed25b5 (patch)
treef762e7f1f50cce89494a53a5744ad307d0d02b2d /Misc/NEWS
parentb52e7a9a364096d355d32927c537389cfc10a5db (diff)
downloadcpython-ded0348c08f298fda4426eb2a62cc3d50eed25b5.zip
cpython-ded0348c08f298fda4426eb2a62cc3d50eed25b5.tar.gz
cpython-ded0348c08f298fda4426eb2a62cc3d50eed25b5.tar.bz2
Issue #13502: threading: Fix a race condition in Event.wait() that made it
return False when the event was set and cleared right after.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7adf4f7..9212f9e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,6 +97,9 @@ Core and Builtins
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 #12926: Fix a bug in tarfile's link extraction.
- Issue #13696: Fix the 302 Relative URL Redirection problem.