Commit 0cc907d9 authored by Stefan Behnel's avatar Stefan Behnel

Py3 test case fix

parent d6575834
......@@ -128,12 +128,12 @@ def go_c_ret():
return i
def go_list():
cdef list l = range(4)
cdef list l = list(range(4))
for i in l:
print u"Spam!"
def go_list_ret():
cdef list l = range(4)
cdef list l = list(range(4))
for i in l:
if i > 1:
return i
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment