Lines Matching full:bytearray
67 - Issue #27473: Fixed possible integer overflow in str, unicode and bytearray
70 - Issue #27507: Add integer overflow check in bytearray.extend(). Patch by
399 - Issue #27039: Fixed bytearray.remove() for values greater than 127. Patch by
415 Affected classes are generic sequence iterators, iterators of bytearray,
818 - Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray
823 unicode and bytearray classes now emit deprecation warning for known
2393 - Issue #19481: print() of unicode, str or bytearray subclass instance in IDLE
3200 - Issue #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now
3295 - Issue #13019: Fix potential reference leaks in bytearray.extend(). Patch
4932 - Issue #11386: bytearray.pop() now throws IndexError when the bytearray is
6274 passed to bytearray.
6939 - Issue #7561: Operations on empty bytearrays (such as ``int(bytearray())``)
6945 methods of bytes, bytearray and unicode objects by using a common
7386 - Issue #6846: Fix bug where bytearray.pop() returns negative integers.
7398 - Issue #6540: Fixed crash for ``bytearray.translate()`` with invalid parameters.
7584 zip(), and bytearray().
7595 str, bytes and bytearray could be optimized away by the compiler, letting the
7637 ``bytearray.translate()``. It was always allowed for ``bytes.translate()``.
7676 - Issue #4348: Some bytearray methods returned that didn't cause any change to
7677 the bytearray, returned the same bytearray instead of a copy.
7707 - Issue #4509: Various issues surrounding resize of bytearray objects to which
9379 - Issue #3575: Incremental decoder's decode function now takes bytearray
9498 - Issue #3156: Fix inconsistent behavior of the bytearray type: all
10214 - Added backport of bytearray type.