diff options
author | Raymond Hettinger <python@rcn.com> | 2016-12-16 21:57:40 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-12-16 21:57:40 (GMT) |
commit | af56e0e70f043ad2615eff403f46d7bc6c411aae (patch) | |
tree | 04b4a82a13f66de749ae61133f88973733e5d0f1 /Misc | |
parent | ac13beeef5740c141131bada52337b19e78679a7 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |