On Sat, 14 Feb 2009 22:10:41 -0800, John Nagle wrote: > >>> xx = b'x'
Isn't this creating a regular byte? Shouldn't creation of bytearray be: >>> xx = bytearray(b'x') -- http://mail.python.org/mailman/listinfo/python-list
On Sat, 14 Feb 2009 22:10:41 -0800, John Nagle wrote: > >>> xx = b'x'
Isn't this creating a regular byte? Shouldn't creation of bytearray be: >>> xx = bytearray(b'x') -- http://mail.python.org/mailman/listinfo/python-list