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