This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients JBernardo, Ramchandra Apte, Rosuav, William.Schwartz, asvetlov, ezio.melotti, ned.deily, python-dev, roger.serwy, serhiy.storchaka, terry.reedy
Date 2013-08-06.16:43:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375807412.04.0.47920246774.issue13153@psf.upfronthosting.co.za>
In-reply-to
Content
0xed is the start byte of a 3 bytes sequence (i.e. a BMP char), and it should be followed by two continuation bytes.

For some reason the traceback you pasted is missing the last part, that might provide some insight.  It could be one of these:
>>> b'\xed'.decode('utf-8') # not enough continuation bytes
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xed in position 0: unexpected end of data
>>> b'\xed\x7f'.decode('utf-8') # not a valid continuation byte
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xed in position 0: invalid continuation byte
History
Date User Action Args
2013-08-06 16:43:32ezio.melottisetrecipients: + ezio.melotti, terry.reedy, ned.deily, roger.serwy, asvetlov, python-dev, JBernardo, Rosuav, Ramchandra Apte, serhiy.storchaka, William.Schwartz
2013-08-06 16:43:32ezio.melottisetmessageid: <1375807412.04.0.47920246774.issue13153@psf.upfronthosting.co.za>
2013-08-06 16:43:32ezio.melottilinkissue13153 messages
2013-08-06 16:43:31ezio.melotticreate