Commit efc997c1 authored by Stefan Behnel's avatar Stefan Behnel

whitespace

parent c0d606ac
......@@ -26,6 +26,7 @@ See also:
import numpy as np
def test_one_sized(array):
"""
>>> contig = np.ascontiguousarray(np.arange(10, dtype=np.double)[::100])
......@@ -39,6 +40,7 @@ def test_one_sized(array):
a[0] += 1.
return array
def test_zero_sized(array):
"""
>>> contig = np.ascontiguousarray(np.arange(10, dtype=np.double)[100:200:10])
......@@ -48,4 +50,4 @@ def test_zero_sized(array):
>>> _ = test_zero_sized(a)
"""
cdef double[::1] a = array
return a
\ No newline at end of file
return a
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