Commit d15ceed3 authored by Stefan Behnel's avatar Stefan Behnel

Fix Py2 doctest issue (shows on Windows).

parent 5cb34d90
......@@ -183,7 +183,7 @@ def test_transpose():
cdef dtype_t[:, :] b = a.T
print a.T.shape[0], a.T.shape[1]
print a_obj.T.shape
print numpy_obj.T.shape
print tuple(map(int, numpy_obj.T.shape)) # might use longs in Py2
cdef dtype_t[:, :] c
with nogil:
......
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