(self)
| 483 | assert_raises(TypeError, select, conditions, choices) |
| 484 | |
| 485 | def test_many_arguments(self): |
| 486 | # This used to be limited by NPY_MAXARGS == 32 |
| 487 | conditions = [np.array([False])] * 100 |
| 488 | choices = [np.array([1])] * 100 |
| 489 | select(conditions, choices) |
| 490 | |
| 491 | |
| 492 | class TestInsert: |