(data, op_name)
| 37 | |
| 38 | |
| 39 | def is_bool_not_implemented(data, op_name): |
| 40 | # match non-masked behavior |
| 41 | return data.dtype.kind == "b" and op_name.strip("_").lstrip("r") in [ |
| 42 | "pow", |
| 43 | "truediv", |
| 44 | "floordiv", |
| 45 | ] |
| 46 | |
| 47 | |
| 48 | # Test equivalence of scalars, numpy arrays with array ops |
no test coverage detected