(self)
| 899 | self._check_inverse_of_slicing(-4) |
| 900 | |
| 901 | def test_0d(self): |
| 902 | a = np.array(1) |
| 903 | with pytest.raises(np.AxisError): |
| 904 | delete(a, [], axis=0) |
| 905 | with pytest.raises(TypeError): |
| 906 | delete(a, [], axis="nonsense") |
| 907 | |
| 908 | def test_subclass(self): |
| 909 | class SubClass(np.ndarray): |