bpo-20087: Revert "make the glibc alias table take precedence over the X11 one (#422)" (#713)

This reverts commit 02371e0ed1.
This commit is contained in:
Benjamin Peterson 2017-03-19 23:49:43 -07:00 committed by GitHub
parent e46fb86118
commit df8280838f
4 changed files with 43 additions and 112 deletions

View file

@ -135,8 +135,8 @@ if __name__ == '__main__':
args = parser.parse_args()
data = locale.locale_alias.copy()
data.update(parse(args.locale_alias))
data.update(parse_glibc_supported(args.glibc_supported))
data.update(parse(args.locale_alias))
while True:
# Repeat optimization while the size is decreased.
n = len(data)