diff options
author | Barry Warsaw <barry@python.org> | 2002-10-13 04:00:45 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-10-13 04:00:45 (GMT) |
commit | ab9439fdd48845e5fe7e75d0cdb7e8e8187e17fd (patch) | |
tree | 8165f3159df3d9466c5a88176bf02df5b64593f9 /Lib | |
parent | 16ecb2160f042da2edda466f9bf6219cde091f2d (diff) | |
download | cpython-ab9439fdd48845e5fe7e75d0cdb7e8e8187e17fd.zip cpython-ab9439fdd48845e5fe7e75d0cdb7e8e8187e17fd.tar.gz cpython-ab9439fdd48845e5fe7e75d0cdb7e8e8187e17fd.tar.bz2 |
Update the urls and other information about the add-on Japanese,
Korean, and Chinese codecs.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/email/Charset.py | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/Lib/email/Charset.py b/Lib/email/Charset.py index 67cc1ec..b476065 100644 --- a/Lib/email/Charset.py +++ b/Lib/email/Charset.py @@ -53,21 +53,16 @@ ALIASES = { 'ascii': 'us-ascii', } -# Map charsets to their Unicode codec strings. Note that the Japanese -# examples included below do not (yet) come with Python! They are available -# from http://pseudo.grad.sccs.chukyo-u.ac.jp/~kajiyama/python/ - -# The Chinese and Korean codecs are available from SourceForge: -# -# http://sourceforge.net/projects/python-codecs/ +# Map charsets to their Unicode codec strings. Note that Python doesn't come +# with any Asian codecs by default. Here's where to get them: # -# although you'll need to check them out of cvs since they haven't been file -# released yet. You might also try to use +# Japanese -- http://www.asahi-net.or.jp/~rd6t-kjym/python +# Korean -- http://sf.net/projects/koco +# Chinese -- http://sf.net/projects/python-codecs # -# http://www.freshports.org/port-description.php3?port=6702 -# -# if you can get logged in. AFAICT, both the Chinese and Korean codecs are -# fairly experimental at this point. +# Note that these codecs have their own lifecycle and may be in varying states +# of stability and useability. + CODEC_MAP = { 'euc-jp': 'japanese.euc-jp', 'iso-2022-jp': 'japanese.iso-2022-jp', |