From 72ba3da313098ee12947677f93243fc6d506b0e4 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 11 Sep 2009 20:53:30 +0200 Subject: [PATCH] implemented but disabled test - large C integer constants are left to the users' care for now --- tests/run/large_consts_T237.pyx | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- 2.26.2