From: Martin v. Löwis Date: Tue, 5 Aug 2003 05:59:47 +0000 (+0000) Subject: Correct URL for normalization file. Fixes #781065. X-Git-Tag: v2.3.1~192 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=62aced020df3339746f68599a3406d2dad269065;p=thirdparty%2FPython%2Fcpython.git Correct URL for normalization file. Fixes #781065. --- diff --git a/Lib/test/test_normalization.py b/Lib/test/test_normalization.py index f8d27861c767..046dca6c851b 100644 --- a/Lib/test/test_normalization.py +++ b/Lib/test/test_normalization.py @@ -3,7 +3,7 @@ import sys import os 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 # directory, and saving just one copy of the test data in the source @@ -42,7 +42,7 @@ def unistr(data): def test_main(): if skip_expected: 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 = {} for line in open(TESTDATAFILE):