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 vstinner
Recipients asvetlov, ezio.melotti, gklein, jcea, jkloth, koobs, pitrou, python-dev, serhiy.storchaka, skrah, tim.golden, turncc, vstinner
Date 2012-11-12.11:14:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352718886.52.0.219903884825.issue16218@psf.upfronthosting.co.za>
In-reply-to
Content
> Back to green for all branches on FreeBSD, thank you Victor

FreeBSD buildbots are green because I disabled the test on undecodable bytes! See issue #16455 which proposes a fix for FreeBSD and OpenIndiana.

> The "Mountain Lion" bots still fail. :)

Yeah I know, see the issue #16416 which has a patch. I plan to commit it to 3.4, wait for buildbots, and then backport to 3.3.

--

Python 3.3 handles non-ASCII almost everywhere. Python 3.4 will probably handle non-ASCII everywhere.

Handling *undecodable* bytes is really hard. We cannot use the same code for UNIX and Windows. If we store data as bytes, it solves the issue, but we don't support any Unicode character on Windows anymore. If we store data as Unicode, it's the opposite (ok for Windows, decode error on UNIX).
History
Date User Action Args
2012-11-12 11:14:46vstinnersetrecipients: + vstinner, jcea, pitrou, tim.golden, jkloth, ezio.melotti, asvetlov, skrah, gklein, python-dev, serhiy.storchaka, koobs, turncc
2012-11-12 11:14:46vstinnersetmessageid: <1352718886.52.0.219903884825.issue16218@psf.upfronthosting.co.za>
2012-11-12 11:14:46vstinnerlinkissue16218 messages
2012-11-12 11:14:46vstinnercreate