(self)
| 2284 | assert_array_equal(np.percentile(np.arange(10), []), np.array([])) |
| 2285 | |
| 2286 | def test_void_compare_segfault(self): |
| 2287 | # gh-6922. The following should not segfault |
| 2288 | a = np.ones(3, dtype=[('object', 'O'), ('int', '<i2')]) |
| 2289 | a.sort() |
| 2290 | |
| 2291 | def test_reshape_size_overflow(self): |
| 2292 | # gh-7455 |