(self)
| 59 | assert_(a is np.asarray(a, order='F')) |
| 60 | |
| 61 | def test_ravel_with_order(self): |
| 62 | # Check that ravel works when order='F' and array C/F-contiguous |
| 63 | a = np.ones(2) |
| 64 | assert_(not a.ravel('F').flags.owndata) |
| 65 | |
| 66 | def test_sort_bigendian(self): |
| 67 | # Ticket #47 |