(a, b)
| 206 | isin_slow = np.vectorize(_isin_slow, otypes=[bool], excluded={1}) |
| 207 | |
| 208 | def assert_isin_equal(a, b): |
| 209 | x = isin(a, b, kind=kind) |
| 210 | y = isin_slow(a, b) |
| 211 | assert_array_equal(x, y) |
| 212 | |
| 213 | # multidimensional arrays in both arguments |
| 214 | a = np.arange(24).reshape([2, 3, 4]) |
nothing calls this directly
no test coverage detected