summaryrefslogtreecommitdiffstats
path: root/Tools/i18n
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2017-03-08 06:03:13 (GMT)
committerGitHub <noreply@github.com>2017-03-08 06:03:13 (GMT)
commit02371e0ed1ee82ec73e7d363bcf2ed40cde1397a (patch)
tree148073e6dcbb0d5ca2b0430d64290cc9570b7bc9 /Tools/i18n
parent9f8ad3f39e0a92ed37d012b9dd237399524f0d51 (diff)
downloadcpython-02371e0ed1ee82ec73e7d363bcf2ed40cde1397a.zip
cpython-02371e0ed1ee82ec73e7d363bcf2ed40cde1397a.tar.gz
cpython-02371e0ed1ee82ec73e7d363bcf2ed40cde1397a.tar.bz2
make the glibc alias table take precedence over the X11 one (#422)
bpo-20087
Diffstat (limited to 'Tools/i18n')
-rwxr-xr-xTools/i18n/makelocalealias.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/i18n/makelocalealias.py b/Tools/i18n/makelocalealias.py
index c7ecace..7405e82 100755
--- a/Tools/i18n/makelocalealias.py
+++ b/Tools/i18n/makelocalealias.py
@@ -135,8 +135,8 @@ if __name__ == '__main__':
args = parser.parse_args()
data = locale.locale_alias.copy()
- data.update(parse_glibc_supported(args.glibc_supported))
data.update(parse(args.locale_alias))
+ data.update(parse_glibc_supported(args.glibc_supported))
while True:
# Repeat optimization while the size is decreased.
n = len(data)