(self)
| 378 | assert_equal(xmm._hardmask, xm._hardmask) |
| 379 | |
| 380 | def test_asarray_default_order(self): |
| 381 | # See Issue #6646 |
| 382 | m = np.eye(3).T |
| 383 | assert_(not m.flags.c_contiguous) |
| 384 | |
| 385 | new_m = asarray(m) |
| 386 | assert_(new_m.flags.c_contiguous) |
| 387 | |
| 388 | def test_asarray_enforce_order(self): |
| 389 | # See Issue #6646 |