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 lemburg
Recipients amaury.forgeotdarc, lemburg, loewis, pascal.bach
Date 2008-08-25.15:10:59
SpamBayes Score 0.00092859194
Marked as misclassified No
Message-id <1219677061.43.0.521347601941.issue3649@psf.upfronthosting.co.za>
In-reply-to
Content
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().
History
Date User Action Args
2008-08-25 15:11:01lemburgsetrecipients: + lemburg, loewis, amaury.forgeotdarc, pascal.bach
2008-08-25 15:11:01lemburgsetmessageid: <1219677061.43.0.521347601941.issue3649@psf.upfronthosting.co.za>
2008-08-25 15:11:00lemburglinkissue3649 messages
2008-08-25 15:11:00lemburgcreate