]> granicus.if.org Git - python/commitdiff
Marc-Andre Lemburg: use all lowercase names.
authorGuido van Rossum <guido@python.org>
Fri, 31 Mar 2000 17:23:18 +0000 (17:23 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 31 Mar 2000 17:23:18 +0000 (17:23 +0000)
Lib/encodings/aliases.py

index 386352f10f833b3a4107431f775325f85e364c4b..d99b38e9082c0760e11ad6b3a18fa50469de735f 100644 (file)
@@ -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',
 
 }