From: Serhiy Storchaka Date: Fri, 13 Jan 2017 07:44:00 +0000 (+0200) Subject: Issue #29219: Fixed infinite recursion in the repr of uninitialized X-Git-Tag: v3.7.0a1~1566 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6196ac418693cedcb103650d41b74ca20cf66640;p=thirdparty%2FPython%2Fcpython.git Issue #29219: Fixed infinite recursion in the repr of uninitialized ctypes.CDLL instances. --- 6196ac418693cedcb103650d41b74ca20cf66640 diff --cc Misc/NEWS index 21db4342de56,1996b3f0748e..71191baa58dd --- a/Misc/NEWS +++ 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.