From: Stefan Behnel Date: Fri, 11 Sep 2009 18:53:30 +0000 (+0200) Subject: implemented but disabled test - large C integer constants are left to the users'... X-Git-Tag: 0.12.alpha0~213 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=72ba3da313098ee12947677f93243fc6d506b0e4;p=cython.git implemented but disabled test - large C integer constants are left to the users' care for now --- diff --git a/tests/run/large_consts_T237.pyx b/tests/run/large_consts_T237.pyx index eb07aa95..8d0f2e56 100644 --- 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