Commit 66844d82 authored by Stefan Behnel's avatar Stefan Behnel

Fix doctest.

parent a667310d
...@@ -708,7 +708,7 @@ def test_boundscheck_and_wraparound(double[:, :] x): ...@@ -708,7 +708,7 @@ def test_boundscheck_and_wraparound(double[:, :] x):
""" """
>>> import numpy as np >>> import numpy as np
>>> array = np.ones((2,2)) * 3.5 >>> array = np.ones((2,2)) * 3.5
>>> testing_memoryview(array) >>> test_boundscheck_and_wraparound(array)
""" """
# Make sure we don't generate C compiler warnings for unused code here. # Make sure we don't generate C compiler warnings for unused code here.
cdef Py_ssize_t numrow = x.shape[0] cdef Py_ssize_t numrow = x.shape[0]
......
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