extended test case
authorStefan Behnel <scoder@users.berlios.de>
Fri, 5 Dec 2008 09:16:59 +0000 (10:16 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 5 Dec 2008 09:16:59 +0000 (10:16 +0100)
tests/run/inop.pyx

index 4f51ca5fff4df2054f03f80c5f2bc6ca2afc6794..dccfe646622f09b905442f0c673b79cde3de5471 100644 (file)
@@ -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