1import numpy as np
2
3exporting_object = np.arange(0, 15 * 10 * 20, dtype=np.intc).reshape((15, 10, 20))
4
5cdef int[:, :, :] my_view = exporting_object
6
7# These are all equivalent
8my_view[10]
9my_view[10, :, :]
10my_view[10, ...]
11