Commit f0dd009a authored by Stefan Behnel's avatar Stefan Behnel

extend test

parent ac8d44a4
......@@ -67,6 +67,15 @@ def from_int_array_array():
return v
def assign_int_array_array():
"""
>>> assign_int_array_array()
[[11, 12, 13], [21, 22, 23]]
"""
cdef int[2][3] v = [[11, 12, 13], [21, 22, 23]]
return v
ctypedef struct MyStructType:
int x
double y
......
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