Kaydet (Commit) 8db4403a authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Correct URL of normalization file. Fixes #781065. Will backport to 2.3.

üst cebcc61d
...@@ -3,7 +3,7 @@ import sys ...@@ -3,7 +3,7 @@ import sys
import os import os
from unicodedata import normalize from unicodedata import normalize
TESTDATAFILE = "NormalizationTest" + os.extsep + "txt" TESTDATAFILE = "NormalizationTest-3.2.0" + os.extsep + "txt"
# This search allows using a build directory just inside the source # This search allows using a build directory just inside the source
# directory, and saving just one copy of the test data in the source # directory, and saving just one copy of the test data in the source
...@@ -42,7 +42,7 @@ def unistr(data): ...@@ -42,7 +42,7 @@ def unistr(data):
def test_main(): def test_main():
if skip_expected: if skip_expected:
raise TestSkipped(TESTDATAFILE + " not found, download from " + raise TestSkipped(TESTDATAFILE + " not found, download from " +
"http://www.unicode.org/Public/UNIDATA/" + TESTDATAFILE) "http://www.unicode.org/Public/3.2-Update/" + TESTDATAFILE)
part1_data = {} part1_data = {}
for line in open(TESTDATAFILE): for line in open(TESTDATAFILE):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment