diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-02 09:47:11 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-02 09:47:11 (GMT) |
commit | b9d98d532cb9bdebff9854eaff91fea13769a595 (patch) | |
tree | 5903bef16674011ec23f91dc4abccaf54777b23e /Misc | |
parent | c9fda9b903dc85be334e588b4be784e878248905 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |