(self)
| 1985 | self._test_sort_partition('argpartition', kinds=['introselect'], kth=2) |
| 1986 | |
| 1987 | def test_resize(self): |
| 1988 | # previously an error |
| 1989 | for dt in [bytes, np.void, str]: |
| 1990 | zs = self._zeros(10, dt) |
| 1991 | zs.resize(25) |
| 1992 | zs.resize((10, 10)) |
| 1993 | |
| 1994 | def test_view(self): |
| 1995 | for dt in [bytes, np.void, str]: |