(a, b)
| 222 | isin_slow = np.vectorize(_isin_slow, otypes=[bool], excluded={1}) |
| 223 | |
| 224 | def assert_isin_equal(a, b): |
| 225 | x = isin(a, b, kind=kind) |
| 226 | y = isin_slow(a, b) |
| 227 | assert_array_equal(x, y) |
| 228 | |
| 229 | # multidimensional arrays in both arguments |
| 230 | a = np.arange(24).reshape([2, 3, 4]) |
nothing calls this directly
no test coverage detected