projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d76956
)
fix test case on 64 bit systems
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 1 May 2008 18:09:34 +0000
(20:09 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 1 May 2008 18:09:34 +0000
(20:09 +0200)
tests/run/r_vree_1.pyx
patch
|
blob
|
history
diff --git
a/tests/run/r_vree_1.pyx
b/tests/run/r_vree_1.pyx
index b49420c06aabcae25e25260f6507e8b665334666..7f6f3a53af1ffaf0ec608105e24a5eb768a8fc93 100644
(file)
--- a/
tests/run/r_vree_1.pyx
+++ b/
tests/run/r_vree_1.pyx
@@
-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