Commit bd77c8db authored by Kurt Smith's avatar Kurt Smith Committed by Mark Florisson

memoryview.pyx testcase tests strided slices.

parent 987311db
...@@ -58,9 +58,11 @@ cdef object global_obj ...@@ -58,9 +58,11 @@ cdef object global_obj
def assignmvs(): def assignmvs():
cdef int[::1] mv1, mv2 cdef int[::1] mv1, mv2
cdef int[:] mv3
mv1 = array((10,), itemsize=sizeof(int), format='i') mv1 = array((10,), itemsize=sizeof(int), format='i')
mv2 = mv1 mv2 = mv1
mv1 = mv2 mv1 = mv2
mv3 = mv2
def call(): def call():
global global_mv global global_mv
......
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