(value, dtype)
| 717 | # Cover the most common creation paths (all end up in the |
| 718 | # same place): |
| 719 | def scalar(value, dtype): |
| 720 | dtype.type(value) |
| 721 | |
| 722 | def assign(value, dtype): |
| 723 | arr = np.array([0, 0, 0], dtype=dtype) |
no outgoing calls
no test coverage detected