Marc-Andre Lemburg <[EMAIL PROTECTED]> added the comment: I think what you're after is the encoding used in SMS messages:
http://en.wikipedia.org/wiki/Short_message_service Here's an old discussion about this codec: http://mail.python.org/pipermail/python-list/2002-October/167267.html http://mail.python.org/pipermail/python-list/2002-October/167271.html Note that nowadays, SMSCs and interface software such as Kannel typically accept UTF-16 data just fine, so the need for such a codec in Python in minimal. I agree with Martin, that the stdlib is not the right place for such a codec. It's easy to write your own codec package and have your application register this package at startup time using codecs.register(). ---------- nosy: +lemburg resolution: -> rejected status: open -> closed _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3649> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com