[Python-checkins] cpython: for some reason, you don't get the right checksum from an incremental build

benjamin.peterson python-checkins at python.org
Mon Jul 7 07:07:17 CEST 2014


http://hg.python.org/cpython/rev/fc7f28b11d20
changeset:   91567:fc7f28b11d20
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Jul 06 22:07:08 2014 -0700
summary:
  for some reason, you don't get the right checksum from an incremental build

files:
  Lib/test/test_unicodedata.py |  5 +++--
  1 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py
--- a/Lib/test/test_unicodedata.py
+++ b/Lib/test/test_unicodedata.py
@@ -79,8 +79,9 @@
 
 class UnicodeFunctionsTest(UnicodeDatabaseTest):
 
-    # update this, if the database changes
-    expectedchecksum = '0f44b670846279c608f20e5b6eeb26e6a8ab1f07'
+    # Update this if the database changes. Make sure to do a full rebuild
+    # (e.g. 'make distclean && make') to get the correct checksum.
+    expectedchecksum = '585302895deead0c1c8478c51da9241d4efedca9'
     def test_function_checksum(self):
         data = []
         h = hashlib.sha1()

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list