Lines Matching full:bytearray
987 as strings are. A new :class:`bytearray` type stores a mutable
990 >>> bytearray([65, 66, 67])
991 bytearray(b'ABC')
992 >>> b = bytearray(u'\u21ef\u3244', 'utf-8')
994 bytearray(b'\xe2\x87\xaf\xe3\x89\x84')
997 bytearray(b'\xe3\x87\xaf\xe3\x89\x84')
1008 >>> b = bytearray('ABC')
1012 bytearray(b'ABCde')