summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-12-16 21:59:32 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-12-16 21:59:32 (GMT)
commitc28dbd0452d54629328daaab0f80ad5391677d17 (patch)
treecb25b36c5db4db47e2ebb062d05603e2a12ac603 /Misc/NEWS
parent10a22dc65a7006e347df4d0b9f0bd0d946802786 (diff)
parentaf56e0e70f043ad2615eff403f46d7bc6c411aae (diff)
downloadcpython-c28dbd0452d54629328daaab0f80ad5391677d17.zip
cpython-c28dbd0452d54629328daaab0f80ad5391677d17.tar.gz
cpython-c28dbd0452d54629328daaab0f80ad5391677d17.tar.bz2
merge
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 fbe26da..24798ce 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -14,6 +14,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.