From: Aarni Koskela Date: Fri, 2 Feb 2018 15:50:04 +0000 (+0200) Subject: import_cldr: choice patterns in currencies are deprecated, so remove todo X-Git-Tag: v2.6.0~8^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6170eff2b566ccf4a17139cf6195df4d1d02629c;p=thirdparty%2Fbabel.git import_cldr: choice patterns in currencies are deprecated, so remove todo --- diff --git a/scripts/import_cldr.py b/scripts/import_cldr.py index d50e1466..ab676a90 100755 --- a/scripts/import_cldr.py +++ b/scripts/import_cldr.py @@ -770,7 +770,6 @@ def parse_currency_names(data, tree): name.attrib['count']] = text_type(name.text) else: currency_names[code] = text_type(name.text) - # TODO: support choice patterns for currency symbol selection symbol = elem.find('symbol') if symbol is not None and 'draft' not in symbol.attrib and 'choice' not in symbol.attrib: currency_symbols[code] = text_type(symbol.text)