From: Antoine Pitrou Date: Tue, 19 May 2015 18:55:42 +0000 (+0200) Subject: Issue #23985: Fix a possible buffer overrun when deleting a slice from the front... X-Git-Tag: v3.5.0b1~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef64847f7172d74f793cff179c50435e846690a6;p=python Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. Patch by Martin Panter. --- ef64847f7172d74f793cff179c50435e846690a6 diff --cc Misc/NEWS index 3d8e3166a9,45a0639794..63e4329cba --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,16 -10,11 +10,19 @@@ Release date: 2015-05-2 Core and Builtins ----------------- + - Issue #23985: Fix a possible buffer overrun when deleting a slice from + the front of a bytearray and then appending some other bytes data. + - Issue #24102: Fixed exception type checking in standard error handlers. +- Issue #15027: The UTF-32 encoder is now 3x to 7x faster. + +- Issue #23290: Optimize set_merge() for cases where the target is empty. + (Contributed by Serhiy Storchaka.) + +- Issue #20274: When calling a _sqlite.Connection, it now complains if passed + any keyword arguments. Previously it silently ignored them. + - Issue #20274: Remove ignored and erroneous "kwargs" parameters from three METH_VARARGS methods on _sqlite.Connection.