Commit 72ba3da3 authored by Stefan Behnel's avatar Stefan Behnel

implemented but disabled test - large C integer constants are left to the users' care for now

parent 083cf6b1
...@@ -5,8 +5,15 @@ True ...@@ -5,8 +5,15 @@ True
True True
>>> add_large() == 2147483647 + 2147483647 >>> add_large() == 2147483647 + 2147483647
True 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(): def add_large():
return 2147483647 + 2147483647 return 2147483647 + 2147483647
......
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