projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
083cf6b
)
implemented but disabled test - large C integer constants are left to the users'...
author
Stefan Behnel
<scoder@users.berlios.de>
Fri, 11 Sep 2009 18:53:30 +0000
(20:53 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Fri, 11 Sep 2009 18:53:30 +0000
(20:53 +0200)
tests/run/large_consts_T237.pyx
patch
|
blob
|
history
diff --git
a/tests/run/large_consts_T237.pyx
b/tests/run/large_consts_T237.pyx
index eb07aa954ab4012f6ea25d085dbf742782327ea1..8d0f2e563ba0fd240705b665784d3ba9c1e822fb 100644
(file)
--- a/
tests/run/large_consts_T237.pyx
+++ b/
tests/run/large_consts_T237.pyx
@@
-5,8
+5,15
@@
True
True
>>> add_large() == 2147483647 + 2147483647
True
+
+#>>> add_large_c() == 2147483647 + 2147483647
+#True
"""
+#def add_large_c():
+# cdef unsigned long long val = 2**30 + 2**30
+# return val
+
def add_large():
return 2147483647 + 2147483647