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:
Foo 2017-08-06 02:59:10 +03:00
parent 335be73d3e
commit eb5834cf3e
1 changed files with 1 additions and 1 deletions

View File

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