Commit 7c0cebd3 authored by Stefan Behnel's avatar Stefan Behnel

fix test case on 64 bit systems

parent 7d769563
......@@ -10,10 +10,10 @@ __doc__ = """
>>> type(sys.maxint * 2 + 1) is long
True
>>> test(sys.maxint + 1)
2147483648L
>>> test(sys.maxint * 2 + 1)
4294967295L
>>> test(sys.maxint + 1) == sys.maxint + 1
True
>>> test(sys.maxint * 2 + 1) == sys.maxint * 2 + 1
True
>>> test(256 ** unsigned_long_size() - 1) > 0
True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment