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

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to