summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-13 07:37:56 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-13 07:37:56 (GMT)
commit4b318f8be941ee75d00aa86d1a61a2ebc4992215 (patch)
tree7d24875ca05a195c1b62e0e1270a311fc3949a44 /Misc/NEWS
parent3023ebb43f7607584c3e123aff56e867cb04a418 (diff)
downloadcpython-4b318f8be941ee75d00aa86d1a61a2ebc4992215.zip
cpython-4b318f8be941ee75d00aa86d1a61a2ebc4992215.tar.gz
cpython-4b318f8be941ee75d00aa86d1a61a2ebc4992215.tar.bz2
Issue #29219: Fixed infinite recursion in the repr of uninitialized
ctypes.CDLL instances.
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 e1ae98f..159b225 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,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.