diff options
author | Marc-André Lemburg <mal@egenix.com> | 2004-07-28 15:35:29 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2004-07-28 15:35:29 (GMT) |
commit | cd8a4cb3d38d03bd739f8b4dc1531125d819ec3c (patch) | |
tree | 2109ae159c1a9d495cdc59e307f7ac1b8dcb68d8 | |
parent | 671c5067374aa69231c19846263e5d752955af65 (diff) | |
download | cpython-cd8a4cb3d38d03bd739f8b4dc1531125d819ec3c.zip cpython-cd8a4cb3d38d03bd739f8b4dc1531125d819ec3c.tar.gz cpython-cd8a4cb3d38d03bd739f8b4dc1531125d819ec3c.tar.bz2 |
Added new codec hp-roman8 submitted as patch [ 996067 ] hp-roman8 codec.
-rw-r--r-- | Lib/encodings/aliases.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/encodings/aliases.py b/Lib/encodings/aliases.py index 79f3cc6..c508082 100644 --- a/Lib/encodings/aliases.py +++ b/Lib/encodings/aliases.py @@ -17,6 +17,8 @@ """ aliases = { + # Please keep this list sorted alphabetically ! + # ascii codec '646' : 'ascii', 'ansi_x3.4_1968' : 'ascii', @@ -244,6 +246,11 @@ aliases = { # hex_codec codec 'hex' : 'hex_codec', + # hp_roman8 codec + 'roman8' : 'hp_roman8', + 'r8' : 'hp_roman8', + 'csHPRoman8' : 'hp_roman8', + # hz codec 'hzgb' : 'hz', 'hz_gb' : 'hz', |