Lines Matching full:bytearray
653 >>> b = bytearray(string.letters) # Creating a mutable object
655 bytearray(b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')
657 >>> mb[0] = '*' # Assign to view, changing the bytearray.
658 >>> b[0:5] # The bytearray has been changed.
659 bytearray(b'*bcde')
855 * The :class:`bytearray` type's :meth:`~bytearray.translate` method now accepts
859 .. XXX bytearray doesn't seem to be documented
1008 (strings, Unicode strings, and :class:`bytearray` objects) now use a
1515 the :class:`bytearray` and :class:`memoryview` objects. (Implemented by