Commit 75519952 authored by Stefan Behnel's avatar Stefan Behnel

new test case for bug 208

parent 94903a17
__doc__ = u"""
>>> go_py_empty()
20
>>> go_c_empty()
20
"""
def go_py_empty():
i = 20
for i in range(4,0):
print u"Spam!"
return i
def go_c_empty():
cdef int i = 20
for i in range(4,0):
print u"Spam!"
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