Move version
I do not actually see this character in diff of EastAsianWidth.txt though, but it appears that test with 5.1.0 uses 2 and succeeds, tests with 6.0.0 and 8.0.0 use 1 and succeed, but test with 5.2.0 uses 2 and fails.
This commit is contained in:
parent
335be73d3e
commit
eb5834cf3e
|
@ -434,7 +434,7 @@ unidata_version = tuple((
|
|||
int(c) for c in unicodedata.unidata_version.split('.')))
|
||||
|
||||
U1F48E_WIDTH = (
|
||||
1 if unidata_version >= (6,) else 2
|
||||
1 if unidata_version >= (5, 2) else 2
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue