(self)
| 1774 | self._test_sort_partition('argpartition', kinds=['introselect'], kth=2) |
| 1775 | |
| 1776 | def test_resize(self): |
| 1777 | # previously an error |
| 1778 | for dt in [bytes, np.void, str]: |
| 1779 | zs = self._zeros(10, dt) |
| 1780 | zs.resize(25) |
| 1781 | zs.resize((10, 10)) |
| 1782 | |
| 1783 | def test_view(self): |
| 1784 | for dt in [bytes, np.void, str]: |