summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-12-16 21:57:40 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-12-16 21:57:40 (GMT)
commitaf56e0e70f043ad2615eff403f46d7bc6c411aae (patch)
tree04b4a82a13f66de749ae61133f88973733e5d0f1 /Misc
parentac13beeef5740c141131bada52337b19e78679a7 (diff)
downloadcpython-af56e0e70f043ad2615eff403f46d7bc6c411aae.zip
cpython-af56e0e70f043ad2615eff403f46d7bc6c411aae.tar.gz
cpython-af56e0e70f043ad2615eff403f46d7bc6c411aae.tar.bz2
Issue #28991: Fix obscure reentrancy bug in functools.lru_cache().
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 806a603..073a9f7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
- Issue #28512: Fixed setting the offset attribute of SyntaxError by
PyErr_SyntaxLocationEx() and PyErr_SyntaxLocationObject().
+- Issue #28991: functools.lru_cache() was susceptible to an obscure reentrancy
+ bug caused by a monkey-patched len() function.
+
- Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
when decode astral characters. Patch by Xiang Zhang.