(self)
| 682 | assert_(a.dtype in [dt0, dt1]) |
| 683 | |
| 684 | def test_random_shuffle(self): |
| 685 | # Ticket #374 |
| 686 | a = np.arange(5).reshape((5, 1)) |
| 687 | b = a.copy() |
| 688 | np.random.shuffle(b) |
| 689 | assert_equal(np.sort(b, axis=0), a) |
| 690 | |
| 691 | def test_refcount_vdot(self): |
| 692 | # Changeset #3443 |
nothing calls this directly
no test coverage detected