[Python-checkins] python/dist/src/Lib/test test_normalization.py, 1.7, 1.8

loewis at users.sourceforge.net loewis at users.sourceforge.net
Mon Aug 4 23:59:15 EDT 2003


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv1881/Lib/test

Modified Files:
	test_normalization.py 
Log Message:
Correct URL of normalization file. Fixes #781065. Will backport to 2.3.


Index: test_normalization.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_normalization.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** test_normalization.py	10 May 2003 07:36:55 -0000	1.7
--- test_normalization.py	5 Aug 2003 05:59:13 -0000	1.8
***************
*** 4,8 ****
  from unicodedata import normalize
  
! TESTDATAFILE = "NormalizationTest" + os.extsep + "txt"
  
  # This search allows using a build directory just inside the source
--- 4,8 ----
  from unicodedata import normalize
  
! TESTDATAFILE = "NormalizationTest-3.2.0" + os.extsep + "txt"
  
  # This search allows using a build directory just inside the source
***************
*** 43,47 ****
      if skip_expected:
          raise TestSkipped(TESTDATAFILE + " not found, download from " +
!                     "http://www.unicode.org/Public/UNIDATA/" + TESTDATAFILE)
  
      part1_data = {}
--- 43,47 ----
      if skip_expected:
          raise TestSkipped(TESTDATAFILE + " not found, download from " +
!                     "http://www.unicode.org/Public/3.2-Update/" + TESTDATAFILE)
  
      part1_data = {}





More information about the Python-checkins mailing list