Commit fd839c47 authored by Stefan Behnel's avatar Stefan Behnel

add disabled test that fails

parent 2b335420
......@@ -85,6 +85,17 @@ def assign_int_array_array_from_tuples():
return v
''' FIXME: this currently crashes:
def assign_int_array_array_from_tuples():
"""
>>> assign_int_array_array_from_tuples()
[[11, 12, 13], [21, 22, 23]]
"""
cdef int[2][3] v = ((11, 12, 13), (21, 22, 23))
return v
'''
def build_from_list_of_arrays():
"""
>>> build_from_list_of_arrays()
......
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