(self)
| 64 | assert_(not a.ravel('F').flags.owndata) |
| 65 | |
| 66 | def test_sort_bigendian(self): |
| 67 | # Ticket #47 |
| 68 | a = np.linspace(0, 10, 11) |
| 69 | c = a.astype(np.dtype('<f8')) |
| 70 | c.sort() |
| 71 | assert_array_almost_equal(c, a) |
| 72 | |
| 73 | def test_negative_nd_indexing(self): |
| 74 | # Ticket #49 |
nothing calls this directly
no test coverage detected