From: Stefan Behnel Date: Mon, 21 Jan 2008 21:01:58 +0000 (+0100) Subject: test case fix X-Git-Tag: 0.9.6.14~45^2~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9c84b9d6bbcbad26e4922b54cfba23be06ca2c56;p=cython.git test case fix --- diff --git a/tests/run/r_vree_1.pyx b/tests/run/r_vree_1.pyx index 74d1ba13..b49420c0 100644 --- a/tests/run/r_vree_1.pyx +++ b/tests/run/r_vree_1.pyx @@ -15,7 +15,9 @@ __doc__ = """ >>> test(sys.maxint * 2 + 1) 4294967295L - >>> test(8 ** unsigned_long_size() - 1) > sys.maxint + >>> test(256 ** unsigned_long_size() - 1) > 0 + True + >>> test(256 ** unsigned_long_size() - 1) > sys.maxint True """