(self)
| 48 | assert_array_equal(np.mgrid[0:0], []) |
| 49 | |
| 50 | def test_refcount_vectorize(self): |
| 51 | # Ticket #378 |
| 52 | def p(x, y): |
| 53 | return 123 |
| 54 | v = np.vectorize(p) |
| 55 | _assert_valid_refcount(v) |
| 56 | |
| 57 | def test_poly1d_nan_roots(self): |
| 58 | # Ticket #396 |
nothing calls this directly
no test coverage detected