(self)
| 592 | assert_(np.array(np.ones((2, 2), order='C'), ndmin=3).flags.c_contiguous) |
| 593 | |
| 594 | def test_mem_axis_minimization(self): |
| 595 | # Ticket #327 |
| 596 | data = np.arange(5) |
| 597 | data = np.add.outer(data, data) |
| 598 | |
| 599 | def test_mem_float_imag(self): |
| 600 | # Ticket #330 |