From: Stefan Behnel Date: Fri, 5 Dec 2008 09:16:59 +0000 (+0100) Subject: extended test case X-Git-Tag: 0.11-beta~157 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e3dc3b21ff7e9819fc213090c798ec095c773f24;p=cython.git extended test case --- diff --git a/tests/run/inop.pyx b/tests/run/inop.pyx index 4f51ca5f..dccfe646 100644 --- a/tests/run/inop.pyx +++ b/tests/run/inop.pyx @@ -41,3 +41,7 @@ def j(b): cdef int result result = 2 in b return result + +def k(a): + cdef int result = a in [1,2,3,4] + return result