[pypy-commit] pypy py3k: another test

pjenvey noreply at buildbot.pypy.org
Tue Mar 4 05:29:37 CET 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r69657:a01d60c8e032
Date: 2014-03-03 20:28 -0800
http://bitbucket.org/pypy/pypy/changeset/a01d60c8e032/

Log:	another test

diff --git a/pypy/objspace/std/test/test_longobject.py b/pypy/objspace/std/test/test_longobject.py
--- a/pypy/objspace/std/test/test_longobject.py
+++ b/pypy/objspace/std/test/test_longobject.py
@@ -241,7 +241,8 @@
         for x in ([self._long(i) for i in range(200)] +
                   [self._long(1234567890123456789),
                    1234567890123456789, 18446743523953737727,
-                   987685321987685321987685321987685321987685321]):
+                   987685321987685321987685321987685321987685321,
+                   10**50]):
             y = x % modulus
             assert hash(x) == hash(y)
             assert hash(-x) == hash(-y)


More information about the pypy-commit mailing list