(self)
| 695 | assert_(a.dtype in [dt0, dt1]) |
| 696 | |
| 697 | def test_random_shuffle(self): |
| 698 | # Ticket #374 |
| 699 | a = np.arange(5).reshape((5, 1)) |
| 700 | b = a.copy() |
| 701 | np.random.shuffle(b) |
| 702 | assert_equal(np.sort(b, axis=0), a) |
| 703 | |
| 704 | def test_refcount_vdot(self): |
| 705 | # Changeset #3443 |
nothing calls this directly
no test coverage detected