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 serhiy.storchaka
Recipients Rosuav, ezio.melotti, serhiy.storchaka, vstinner
Date 2015-03-08.22:01:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425852075.34.0.13850975232.issue23614@psf.upfronthosting.co.za>
In-reply-to
Content
UTF-8 codec can't decode byte 0xed because 0xed is not valid UTF-8 sequence and following byte is not expected valid continuation byte.

UTF-8 codec can produce errors of three types:

* "invalid start byte". When the byte is not start byte of UTF-8 sequence (%x00-7F, %xC2-F4).
* "invalid continuation byte".  When the byte that follow unfinished UTF-8 sequence is not valid continuation byte (the validity depends on previous byte).
* "unexpected end of data". When the there are no bytes after unfinished UTF-8 sequence.
History
Date User Action Args
2015-03-08 22:01:15serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, ezio.melotti, Rosuav
2015-03-08 22:01:15serhiy.storchakasetmessageid: <1425852075.34.0.13850975232.issue23614@psf.upfronthosting.co.za>
2015-03-08 22:01:15serhiy.storchakalinkissue23614 messages
2015-03-08 22:01:15serhiy.storchakacreate