make the glibc alias table take precedence over the X11 one (#422)

bpo-20087
This commit is contained in:
Benjamin Peterson 2017-03-07 22:03:13 -08:00 committed by GitHub
parent 9f8ad3f39e
commit 02371e0ed1
4 changed files with 112 additions and 43 deletions

View file

@ -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)