| 8748 | assert_raises(ValueError, bool, np.array([1, 2])) |
| 8749 | |
| 8750 | class NotConvertible: |
| 8751 | def __bool__(self): |
| 8752 | raise NotImplementedError |
| 8753 | |
| 8754 | assert_raises(NotImplementedError, bool, np.array(NotConvertible())) |
| 8755 | assert_raises(NotImplementedError, bool, np.array([NotConvertible()])) |
no outgoing calls