]> granicus.if.org Git - python/commitdiff
Issue #23985: Fix a possible buffer overrun when deleting a slice from the front...
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 19 May 2015 18:55:42 +0000 (20:55 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 19 May 2015 18:55:42 +0000 (20:55 +0200)
Patch by Martin Panter.

1  2 
Lib/test/test_bytes.py
Misc/NEWS
Objects/bytearrayobject.c

Simple merge
diff --cc Misc/NEWS
index 3d8e3166a9471d6dc5c37a007257dfb0b9cc0d8e,45a0639794319b1815f5e1c1c748ea7f9c8098bc..63e4329cbaf323abeab949fe3b1ac6c9e5dbaddf
+++ 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.
  
Simple merge