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

fix test case on 64 bit systems

parent 7d769563
...@@ -10,10 +10,10 @@ __doc__ = """ ...@@ -10,10 +10,10 @@ __doc__ = """
>>> type(sys.maxint * 2 + 1) is long >>> type(sys.maxint * 2 + 1) is long
True True
>>> test(sys.maxint + 1) >>> test(sys.maxint + 1) == sys.maxint + 1
2147483648L True
>>> test(sys.maxint * 2 + 1) >>> test(sys.maxint * 2 + 1) == sys.maxint * 2 + 1
4294967295L True
>>> test(256 ** unsigned_long_size() - 1) > 0 >>> test(256 ** unsigned_long_size() - 1) > 0
True 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