(self)
| 608 | assert_(np.array(np.ones((2, 2), order='C'), ndmin=3).flags.c_contiguous) |
| 609 | |
| 610 | def test_mem_axis_minimization(self): |
| 611 | # Ticket #327 |
| 612 | data = np.arange(5) |
| 613 | data = np.add.outer(data, data) |
| 614 | |
| 615 | def test_mem_float_imag(self): |
| 616 | # Ticket #330 |