bpo-35551: encodings update (GH-11446)

This commit is contained in:
Ashwin Ramaswami 2019-06-05 15:18:07 -07:00 committed by Cheryl Sabella
parent 54edb04aa6
commit c4c15ed7a2
3 changed files with 6 additions and 4 deletions

View File

@ -1198,7 +1198,8 @@ particular, the following variants typically exist:
+-----------------+--------------------------------+--------------------------------+
| mac_iceland | maciceland | Icelandic |
+-----------------+--------------------------------+--------------------------------+
| mac_latin2 | maclatin2, maccentraleurope | Central and Eastern Europe |
| mac_latin2 | maclatin2, maccentraleurope, | Central and Eastern Europe |
| | mac_centeuro | |
+-----------------+--------------------------------+--------------------------------+
| mac_roman | macroman, macintosh | Western Europe |
+-----------------+--------------------------------+--------------------------------+

View File

@ -448,6 +448,7 @@ aliases = {
# mac_latin2 codec
'maccentraleurope' : 'mac_latin2',
'mac_centeuro' : 'mac_latin2',
'maclatin2' : 'mac_latin2',
# mac_roman codec
@ -491,9 +492,6 @@ aliases = {
'sjisx0213' : 'shift_jisx0213',
's_jisx0213' : 'shift_jisx0213',
# tactis codec
'tis260' : 'tactis',
# tis_620 codec
'tis620' : 'tis_620',
'tis_620_0' : 'tis_620',

View File

@ -0,0 +1,3 @@
Updated encodings:
- Removed the "tis260" encoding, which was an alias for the nonexistent "tactis" codec.
- Added "mac_centeuro" as an alias for the mac_latin2 encoding.