]> granicus.if.org Git - python/commitdiff
Issue #29219: Fixed infinite recursion in the repr of uninitialized
authorSerhiy Storchaka <storchaka@gmail.com>
Fri, 13 Jan 2017 07:44:00 +0000 (09:44 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Fri, 13 Jan 2017 07:44:00 +0000 (09:44 +0200)
ctypes.CDLL instances.

1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 21db4342de569f0498852773d83c3b3328d43ecc,1996b3f0748e5e68f5dab64121f9b7528107e4a7..71191baa58dd441b670b3137ed282b168390e2ab
+++ b/Misc/NEWS
@@@ -212,14 -44,9 +212,17 @@@ Core and Builtin
  Library
  -------
  
+ - Issue #29219: Fixed infinite recursion in the repr of uninitialized
+   ctypes.CDLL instances.
 +- Issue #29192: Removed deprecated features in the http.cookies module.
 +
 +- Issue #29193: A format string argument for string.Formatter.format()
 +  is now positional-only.
 +
 +- Issue #29195: Removed support of deprecated undocumented keyword arguments
 +  in methods of regular expression objects.
 +
  - 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.