Home | History | Annotate | Download | only in whatsnew

Lines Matching full:bytearray

644     >>> b = bytearray(string.letters)  # Creating a mutable object
646 bytearray(b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')
648 >>> mb[0] = '*' # Assign to view, changing the bytearray.
649 >>> b[0:5] # The bytearray has been changed.
650 bytearray(b'*bcde')
840 * The :class:`bytearray` type's :meth:`~bytearray.translate` method now accepts
844 .. XXX bytearray doesn't seem to be documented
993 (strings, Unicode strings, and :class:`bytearray` objects) now use a
1500 the :class:`bytearray` and :class:`memoryview` objects. (Implemented by