()
| 106 | } |
| 107 | # Recompute each time because of in-place ops |
| 108 | def _array_vals(): |
| 109 | for d in _integer_dtypes: |
| 110 | yield asarray(1, dtype=d) |
| 111 | for d in _boolean_dtypes: |
| 112 | yield asarray(False, dtype=d) |
| 113 | for d in _floating_dtypes: |
| 114 | yield asarray(1.0, dtype=d) |
| 115 | |
| 116 | |
| 117 | BIG_INT = int(1e30) |
no test coverage detected