()
| 84 | } |
| 85 | |
| 86 | def _array_vals(): |
| 87 | for d in _integer_dtypes: |
| 88 | yield asarray(1, dtype=d) |
| 89 | for d in _boolean_dtypes: |
| 90 | yield asarray(False, dtype=d) |
| 91 | for d in _floating_dtypes: |
| 92 | yield asarray(1.0, dtype=d) |
| 93 | |
| 94 | for x in _array_vals(): |
| 95 | for func_name, types in elementwise_function_input_types.items(): |
no test coverage detected