Author: Ronan Lamy <ronan.l...@gmail.com>
Branch: py3k
Changeset: r85989:a215c6257e88
Date: 2016-08-02 14:55 +0100
http://bitbucket.org/pypy/pypy/changeset/a215c6257e88/

Log:    The empty string hash is now -2

diff --git a/lib-python/3/test/test_hash.py b/lib-python/3/test/test_hash.py
--- a/lib-python/3/test/test_hash.py
+++ b/lib-python/3/test/test_hash.py
@@ -164,7 +164,7 @@
 
 class StringlikeHashRandomizationTests(HashRandomizationTests):
     if check_impl_detail(pypy=True):
-        EMPTY_STRING_HASH = -1
+        EMPTY_STRING_HASH = -2
     else:
         EMPTY_STRING_HASH = 0
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to