summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-12-16 13:59:57 -0800
committerRaymond Hettinger <python@rcn.com>2016-12-16 13:59:57 -0800
commit86d1131aa47c41ae83cc6c47ec3ce28c5dcaf91e (patch)
tree1938df61bd05a19aeff46b5c14ecb4d8b98c519c /Misc
parent8a68277848422c1d88c5f55143e39da14a08fca3 (diff)
parentf8d0eab00ca9959835539fdce1dd33ce09720ecd (diff)
downloadcpython-86d1131aa47c41ae83cc6c47ec3ce28c5dcaf91e.tar.gz
merge
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 9d1ccfd07c..3ef25b6df9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,6 +17,9 @@ Core and Builtins
to/from UTF-8, instead of the locale encoding to avoid inconsistencies with
os.fsencode() and os.fsdecode() which are already using UTF-8.
+- Issue #28991: functools.lru_cache() was susceptible to an obscure $
+ bug triggerable by a monkey-patched len() function.
+
- Issue #28147: Fix a memory leak in split-table dictionaries: setattr()
must not convert combined table into split table. Patch written by INADA
Naoki.