summaryrefslogtreecommitdiff
path: root/Tools/i18n
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-10-02 00:11:21 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2014-10-02 00:11:21 +0300
commitfda90ac530bc8c676213cd3d083b01fb712d2c87 (patch)
treeae39afa19a8f68fe280747b2fad74abcadafa463 /Tools/i18n
parent4fde6feb2e0ad8a82cada29e6e587173414a7966 (diff)
parent8a7a7aa9f873c0ebc66b38ed1c96a51bcb71e7d0 (diff)
downloadcpython-fda90ac530bc8c676213cd3d083b01fb712d2c87.tar.gz
Issue #20076: Added non derived UTF-8 aliases to locale aliases table.
The makelocalealias.py script no longer ignores UTF-8 mapping.
Diffstat (limited to 'Tools/i18n')
-rwxr-xr-xTools/i18n/makelocalealias.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Tools/i18n/makelocalealias.py b/Tools/i18n/makelocalealias.py
index ca69daa7a8..980465b42c 100755
--- a/Tools/i18n/makelocalealias.py
+++ b/Tools/i18n/makelocalealias.py
@@ -45,10 +45,6 @@ def parse(filename):
encoding = encoding.replace('-', '')
encoding = encoding.replace('_', '')
locale = lang + '.' + encoding
- if encoding.lower() == 'utf8':
- # Ignore UTF-8 mappings - this encoding should be
- # available for all locales
- continue
data[locale] = alias
return data