Split long line.
XXX If NormalizationTest.txt is required to run this test, why isn't it checked into the project?
This commit is contained in:
parent
77c06fbf94
commit
b9ac505110
|
@ -2,9 +2,10 @@ from test.test_support import verbose, TestFailed, TestSkipped, verify
|
|||
import sys
|
||||
from unicodedata import normalize
|
||||
try:
|
||||
data = open("NormalizationTest.txt","r").readlines()
|
||||
data = open("NormalizationTest.txt", "r").readlines()
|
||||
except IOError:
|
||||
raise TestSkipped("NormalizationTest.txt not found, download from http://www.unicode.org/Public/UNIDATA/NormalizationTest.txt")
|
||||
raise TestSkipped("NormalizationTest.txt not found, download from "
|
||||
"http://www.unicode.org/Public/UNIDATA/NormalizationTest.txt")
|
||||
|
||||
class RangeError:
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue