summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-12 17:12:21 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-12 17:12:21 (GMT)
commit42e1ea9a10aa6c3df40af3b7561d6251c8e2ac9c (patch)
treed54140f730a38805fa55a7a5cc90b0e894d91318 /Misc/NEWS
parent12c4aba1a0fbd934a66d6b97c29c36d7de14e755 (diff)
parent67796521dd22b3008788a75108b45f33d06f85dd (diff)
downloadcpython-42e1ea9a10aa6c3df40af3b7561d6251c8e2ac9c.zip
cpython-42e1ea9a10aa6c3df40af3b7561d6251c8e2ac9c.tar.gz
cpython-42e1ea9a10aa6c3df40af3b7561d6251c8e2ac9c.tar.bz2
Issue #28969: Fixed race condition in C implementation of functools.lru_cache.
KeyError could be raised when cached function with full cache was simultaneously called from differen threads with the same uncached arguments.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 165e30e..3b84dd7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,10 @@ Core and Builtins
Library
-------
+- Issue #28969: Fixed race condition in C implementation of functools.lru_cache.
+ KeyError could be raised when cached function with full cache was
+ simultaneously called from differen threads with the same uncached arguments.
+
- Issue #29142: In urllib.request, suffixes in no_proxy environment variable with
leading dots could match related hostnames again (e.g. .b.c matches a.b.c).
Patch by Milan Oberkirch.