implemented but disabled test - large C integer constants are left to the users'...
authorStefan Behnel <scoder@users.berlios.de>
Fri, 11 Sep 2009 18:53:30 +0000 (20:53 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 11 Sep 2009 18:53:30 +0000 (20:53 +0200)
tests/run/large_consts_T237.pyx

index eb07aa954ab4012f6ea25d085dbf742782327ea1..8d0f2e563ba0fd240705b665784d3ba9c1e822fb 100644 (file)
@@ -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