projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65a0f3f
)
extended test case
author
Stefan Behnel
<scoder@users.berlios.de>
Fri, 5 Dec 2008 09:16:59 +0000
(10:16 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Fri, 5 Dec 2008 09:16:59 +0000
(10:16 +0100)
tests/run/inop.pyx
patch
|
blob
|
history
diff --git
a/tests/run/inop.pyx
b/tests/run/inop.pyx
index 4f51ca5fff4df2054f03f80c5f2bc6ca2afc6794..dccfe646622f09b905442f0c673b79cde3de5471 100644
(file)
--- 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