From: Antoine Pitrou Date: Mon, 13 Apr 2015 18:02:33 +0000 (+0200) Subject: Issue #22982: Improve BOM handling when seeking to multiple positions of a writable... X-Git-Tag: v3.5.0a4~86 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=56452eea39baa9d1864b2275b9e93cf37378af09;p=python Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file. --- 56452eea39baa9d1864b2275b9e93cf37378af09 diff --cc Misc/NEWS index 8cb2cadd8e,6ed85efc48..3254a70d10 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -24,15 -29,9 +24,18 @@@ Core and Builtin Library ------- + - Issue #22982: Improve BOM handling when seeking to multiple positions of + a writable text file. + +- Issue #23464: Removed deprecated asyncio JoinableQueue. + +- Issue #23529: Limit the size of decompressed data when reading from + GzipFile, BZ2File or LZMAFile. This defeats denial of service attacks + using compressed bombs (i.e. compressed payloads which decompress to a huge + size). Patch by Martin Panter and Nikolaus Rath. + +- Issue #21859: Added Python implementation of io.FileIO. + - Issue #23865: close() methods in multiple modules now are idempotent and more robust at shutdown. If needs to release multiple resources, they are released even if errors are occured.