From: Serhiy Storchaka Date: Wed, 2 Dec 2015 23:05:52 +0000 (+0200) Subject: Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. X-Git-Tag: v3.6.0a1~964 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c088a9b5cb7d2a74bfe3bc4a8e380b9023e5579;p=python Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. --- 7c088a9b5cb7d2a74bfe3bc4a8e380b9023e5579 diff --cc Misc/NEWS index 6f86de701e,166864abdc..2fbd20e50b --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,11 -10,8 +10,13 @@@ Release date: XXXX-XX-X Core and Builtins ----------------- + - Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. + +- Issue #5319: New Py_FinalizeEx() API allowing Python to set an exit status + of 120 on failure to flush buffered streams. + +- Issue #25485: telnetlib.Telnet is now a context manager. + - Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside __getattr__.