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 belopolsky, ezio.melotti, georg.brandl, lemburg, loewis, moese, phr, serhiy.storchaka, tchrist, vstinner
Date 2012-04-24.12:07:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335269405.2400.57.camel@raxxla>
In-reply-to <1335266934.29.0.0321981806523.issue2857@psf.upfronthosting.co.za>
Content
> Serhiy: your functions to not constitute a Python codec. For example, there is no support for error handlers in them.

Yes, it is not a codec in Python library terminology. It's just a pair
of functions, the COder and DECoder, which is enough for the task of
hacking Java serialized data. I don't think that such specific task
leads to the change of the interpreter core.

However, translators that convert the non-BMP characters to a surrogate
pair and back, would be useful in the standard library. They need to
work with a non-standard encodings (CESU-8, MUTF-8, cp65001, some
Tk/IDLE issues). This is a fairly common task.
History
Date User Action Args
2012-04-24 12:07:37serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, loewis, georg.brandl, phr, belopolsky, moese, vstinner, ezio.melotti, tchrist
2012-04-24 12:07:37serhiy.storchakalinkissue2857 messages
2012-04-24 12:07:37serhiy.storchakacreate