diff options
author | Greg Price <gnprice@gmail.com> | 2019-08-13 05:59:30 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2019-08-13 05:59:30 (GMT) |
commit | 99d208efed97e02d813e8166925b998bbd0d3993 (patch) | |
tree | 5a3b6605800fdc87b1da7659dd07e6a544cfed2b /Tools | |
parent | def97c988be8340f33869b57942a30d10fc3a1f9 (diff) | |
download | cpython-99d208efed97e02d813e8166925b998bbd0d3993.zip cpython-99d208efed97e02d813e8166925b998bbd0d3993.tar.gz cpython-99d208efed97e02d813e8166925b998bbd0d3993.tar.bz2 |
bpo-37760: Constant-fold some old options in makeunicodedata. (GH-15129)
The `expand` option was introduced in 2000 in commit fad27aee1.
It appears to have been always set since it was committed, and
what it does is tell the code to do something essential. So,
just always do that, and cut the option.
Also cut the `linebreakprops` option, which isn't consulted anymore.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/unicode/makeunicodedata.py | 44 |
1 files changed, 20 insertions, 24 deletions
diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py index 1be93ec..38c1f19 100644 --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -943,10 +943,7 @@ class UnicodeData: # ISO-comment, uppercase, lowercase, titlecase, ea-width, (16) # derived-props] (17) - def __init__(self, version, - linebreakprops=False, - expand=1, - cjk_check=True): + def __init__(self, version, cjk_check=True): self.changed = [] table = [None] * 0x110000 for s in UcdFile(UNICODE_DATA, version): @@ -956,26 +953,25 @@ class UnicodeData: cjk_ranges_found = [] # expand first-last ranges - if expand: - field = None - for i in range(0, 0x110000): - s = table[i] - if s: - if s[1][-6:] == "First>": - s[1] = "" - field = s - elif s[1][-5:] == "Last>": - if s[1].startswith("<CJK Ideograph"): - cjk_ranges_found.append((field[0], - s[0])) - s[1] = "" - field = None - elif field: - f2 = field[:] - f2[0] = "%X" % i - table[i] = f2 - if cjk_check and cjk_ranges != cjk_ranges_found: - raise ValueError("CJK ranges deviate: have %r" % cjk_ranges_found) + field = None + for i in range(0, 0x110000): + s = table[i] + if s: + if s[1][-6:] == "First>": + s[1] = "" + field = s + elif s[1][-5:] == "Last>": + if s[1].startswith("<CJK Ideograph"): + cjk_ranges_found.append((field[0], + s[0])) + s[1] = "" + field = None + elif field: + f2 = field[:] + f2[0] = "%X" % i + table[i] = f2 + if cjk_check and cjk_ranges != cjk_ranges_found: + raise ValueError("CJK ranges deviate: have %r" % cjk_ranges_found) # public attributes self.filename = UNICODE_DATA % '' |