diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-19 01:17:46 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-19 01:17:46 (GMT) |
commit | f1789dee30f36cfdc2150c91a1fddb756dbd670d (patch) | |
tree | f5d32e84f7817f687e60f6272b8e90da417da973 /Lib | |
parent | 3ab1fa6102653136be2670b0714ea414b4a39b52 (diff) | |
download | cpython-f1789dee30f36cfdc2150c91a1fddb756dbd670d.zip cpython-f1789dee30f36cfdc2150c91a1fddb756dbd670d.tar.gz cpython-f1789dee30f36cfdc2150c91a1fddb756dbd670d.tar.bz2 |
Revert Unicode UCD 5.2 upgrade in 3.x. It broke repr() for unicode objects, and gave failures in test_bigmem. Revert 79062, 79065 and 79083.
Diffstat (limited to 'Lib')
-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 9777f73..46f0607 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 = '0b915116051f3ed029a98542c2b7df63c9646272' 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 = '6ccf1b1a36460d2694f9b0b0f0324942fe70ede6' + expectedchecksum = 'd4169ccff998ebbd1ec007a0b3fbd66e5ccf0229' def test_function_checksum(self): data = [] |