summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-10-02 09:47:11 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-10-02 09:47:11 (GMT)
commitb9d98d532cb9bdebff9854eaff91fea13769a595 (patch)
tree5903bef16674011ec23f91dc4abccaf54777b23e /Misc
parentc9fda9b903dc85be334e588b4be784e878248905 (diff)
downloadcpython-b9d98d532cb9bdebff9854eaff91fea13769a595.zip
cpython-b9d98d532cb9bdebff9854eaff91fea13769a595.tar.gz
cpython-b9d98d532cb9bdebff9854eaff91fea13769a595.tar.bz2
Issue #24483: C implementation of functools.lru_cache() now calculates key's
hash only once.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b7f42a2..41852a4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Core and Builtins
Library
-------
+- Issue #24483: C implementation of functools.lru_cache() now calculates key's
+ hash only once.
+
- Issue #22958: Constructor and update method of weakref.WeakValueDictionary
now accept the self and the dict keyword arguments.