diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-10-11 22:42:28 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-10-11 22:42:28 +0000 |
commit | baecd7243ad2d671fa6f675777dfe7094e8c5c39 (patch) | |
tree | a4e6b946feafacd5c5f1bccd8a30d69fa7dd6922 /Lib/test/test_unicodedata.py | |
parent | e8930228c7482d39faf24f4a805c37ff7ca9223a (diff) | |
download | cpython-baecd7243ad2d671fa6f675777dfe7094e8c5c39.tar.gz cpython-baecd7243ad2d671fa6f675777dfe7094e8c5c39.zip |
Upgrade to Unicode 6.0.0.
makeunicodedata.py: download all data files from unicode.org,
switch to extracting Unihan data from zip file.
Read linebreakprops and derivednormalizationprops even for
old versions, even though they are not used in delta records.
test:unicode.py: U+11000 is now assigned, use U+14000 instead.
Diffstat (limited to 'Lib/test/test_unicodedata.py')
-rw-r--r-- | Lib/test/test_unicodedata.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index d7a1eca104b..fd8a4c6ffbc 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py @@ -21,7 +21,7 @@ errors = 'surrogatepass' class UnicodeMethodsTest(unittest.TestCase): # update this, if the database changes - expectedchecksum = '4504dffd035baea02c5b9de82bebc3d65e0e0baf' + expectedchecksum = '21b90f1aed00081b81ca7942b22196af090015a0' def test_method_checksum(self): h = hashlib.sha1() @@ -80,7 +80,7 @@ class UnicodeDatabaseTest(unittest.TestCase): class UnicodeFunctionsTest(UnicodeDatabaseTest): # update this, if the database changes - expectedchecksum = 'e89a6380093a00a7685ac7b92e7367d737fcb79b' + expectedchecksum = 'c23dfc0b5eaf3ca2aad32d733de96bb182ccda50' def test_function_checksum(self): data = [] h = hashlib.sha1() |