summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-31 17:23:18 (GMT)
committerGuido van Rossum <guido@python.org>2000-03-31 17:23:18 (GMT)
commit68895ed70ce8e9c89d376df49dff4df57d490d1f (patch)
tree40b0771fd298b8af32d7b237e338717403fc8970 /Lib
parent8de16932d0d401a5ef9ac32f746b6d451aa62012 (diff)
downloadcpython-68895ed70ce8e9c89d376df49dff4df57d490d1f.zip
cpython-68895ed70ce8e9c89d376df49dff4df57d490d1f.tar.gz
cpython-68895ed70ce8e9c89d376df49dff4df57d490d1f.tar.bz2
Marc-Andre Lemburg: use all lowercase names.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/encodings/aliases.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/encodings/aliases.py b/Lib/encodings/aliases.py
index 386352f..d99b38e 100644
--- a/Lib/encodings/aliases.py
+++ b/Lib/encodings/aliases.py
@@ -24,8 +24,8 @@ aliases = {
'u16': 'utf_16',
'utf_16be': 'utf_16_be',
'utf_16le': 'utf_16_le',
- 'UnicodeBigUnmarked': 'utf_16_be',
- 'UnicodeLittleUnmarked': 'utf_16_le',
+ 'unicodebigunmarked': 'utf_16_be',
+ 'unicodelittleunmarked': 'utf_16_le',
# ASCII
'us_ascii': 'ascii',
@@ -47,11 +47,11 @@ aliases = {
'iso_8859_9': 'iso8859_9',
# Mac
- 'MacCentralEurope': 'mac_latin2',
- 'MacCyrillic': 'mac_cyrillic',
- 'MacGreek': 'mac_greek',
- 'MacIceland': 'mac_iceland',
- 'MacRoman': 'mac_roman',
- 'MacTurkish': 'mac_turkish',
+ 'maccentraleurope': 'mac_latin2',
+ 'maccyrillic': 'mac_cyrillic',
+ 'macgreek': 'mac_greek',
+ 'maciceland': 'mac_iceland',
+ 'macroman': 'mac_roman',
+ 'macturkish': 'mac_turkish',
}