diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-13 07:42:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-13 07:42:17 (GMT) |
commit | 4c4ff5f4d43e49ee429f37916c34fff8435693ca (patch) | |
tree | d6fa43cb76d4a0a41e93793e570c5393cf47de83 /Misc | |
parent | a6758427fd96741c6a8a1506f933bb0107d2b0a7 (diff) | |
parent | 4b318f8be941ee75d00aa86d1a61a2ebc4992215 (diff) | |
download | cpython-4c4ff5f4d43e49ee429f37916c34fff8435693ca.zip cpython-4c4ff5f4d43e49ee429f37916c34fff8435693ca.tar.gz cpython-4c4ff5f4d43e49ee429f37916c34fff8435693ca.tar.bz2 |
Issue #29219: Fixed infinite recursion in the repr of uninitialized
ctypes.CDLL instances.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -44,6 +44,9 @@ Core and Builtins Library ------- +- Issue #29219: Fixed infinite recursion in the repr of uninitialized + ctypes.CDLL instances. + - Issue #28969: Fixed race condition in C implementation of functools.lru_cache. KeyError could be raised when cached function with full cache was simultaneously called from differen threads with the same uncached arguments. |