Commit 8e051569 authored by Stefan Behnel's avatar Stefan Behnel

move old list test from broken into list.pyx

parent 11da83d1
def f():
cdef list l
l = list()
l.append("second")
l.insert(0, "first")
return l
......@@ -77,6 +77,16 @@ def test_list_append():
l1.append(4)
return l1
def test_list_append_insert():
"""
>>> test_list_append_insert()
['first', 'second']
"""
cdef list l = []
l.append("second")
l.insert(0, "first")
return l
def test_list_pop():
"""
>>> test_list_pop()
......
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