mirror of
https://github.com/python/cpython.git
synced 2025-08-28 12:45:07 +00:00
Merged revisions 66369 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66369 | martin.v.loewis | 2008-09-10 21:16:35 +0200 (Mi, 10 Sep 2008) | 4 lines Read unidata_version from unicodedata module. Delete old NormalizationTest.txt if it doesn't match unidata_version. ........
This commit is contained in:
parent
6dfcb02287
commit
bb417dcc49
1 changed files with 9 additions and 2 deletions
|
@ -3,10 +3,17 @@ import unittest
|
|||
|
||||
import sys
|
||||
import os
|
||||
from unicodedata import normalize
|
||||
from unicodedata import normalize, unidata_version
|
||||
|
||||
TESTDATAFILE = "NormalizationTest.txt"
|
||||
TESTDATAURL = "http://www.unicode.org/Public/5.1.0/ucd/" + TESTDATAFILE
|
||||
TESTDATAURL = "http://www.unicode.org/Public/" + unidata_version + "/ucd/" + TESTDATAFILE
|
||||
|
||||
if os.path.exists(TESTDATAFILE):
|
||||
f = open(TESTDATAFILE)
|
||||
l = f.readline()
|
||||
f.close()
|
||||
if not unidata_version in l:
|
||||
os.unlink(TESTDATAFILE)
|
||||
|
||||
class RangeError(Exception):
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue