diff options
author | Benjamin Peterson <benjamin@python.org> | 2017-06-23 05:31:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-23 05:31:08 (GMT) |
commit | 279a96206f3118a482d10826a1e32b272db4505d (patch) | |
tree | dc542b2e2764d146093fdcf1fb5590c1e190d553 /Lib/test/test_unicodedata.py | |
parent | b066edfb1b268e90ea11f45dd1827f46d7ceec88 (diff) | |
download | cpython-279a96206f3118a482d10826a1e32b272db4505d.zip cpython-279a96206f3118a482d10826a1e32b272db4505d.tar.gz cpython-279a96206f3118a482d10826a1e32b272db4505d.tar.bz2 |
bpo-30736: upgrade to Unicode 10.0 (#2344)
Straightforward. While we're at it, though, strip trailing whitespace from generated tables.
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 4fc11ec..92fd9dc 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py @@ -20,7 +20,7 @@ errors = 'surrogatepass' class UnicodeMethodsTest(unittest.TestCase): # update this, if the database changes - expectedchecksum = 'c1fa98674a683aa8a8d8dee0c84494f8d36346e6' + expectedchecksum = '727091e0fd5807eb41c72912ae95cdd74c795e27' def test_method_checksum(self): h = hashlib.sha1() @@ -80,7 +80,7 @@ class UnicodeFunctionsTest(UnicodeDatabaseTest): # Update this if the database changes. Make sure to do a full rebuild # (e.g. 'make distclean && make') to get the correct checksum. - expectedchecksum = 'f891b1e6430c712531b9bc935a38e22d78ba1bf3' + expectedchecksum = 'db6f92bb5010f8e85000634b08e77233355ab37a' def test_function_checksum(self): data = [] h = hashlib.sha1() |