Writing byte stream as jpeg format to disk
Terry Reedy
tjreedy at udel.edu
Thu Aug 26 18:53:08 EDT 2010
On 8/26/2010 5:28 PM, Navkirat Singh wrote:
>>>> b = b'asdf'
>>>> type(b)
> <class 'bytes'>
>>>> s = b.split(':')
You are trying to split bytes with a string, which is impossible.
Split bytes with bytes, strings with strings.
> Traceback (most recent call last):
> File "<stdin>", line 1, in<module>
> TypeError: Type str doesn't support the buffer API
--
Terry Jan Reedy
More information about the Python-list
mailing list