()
| 3178 | assert_equal(z, range(0, 10, 2)) |
| 3179 | |
| 3180 | def test_close_raises(): |
| 3181 | it = np.nditer(np.arange(3)) |
| 3182 | assert_equal (next(it), 0) |
| 3183 | it.close() |
| 3184 | assert_raises(StopIteration, next, it) |
| 3185 | assert_raises(ValueError, getattr, it, 'operands') |
| 3186 | |
| 3187 | def test_close_parameters(): |
| 3188 | it = np.nditer(np.arange(3)) |
nothing calls this directly
no test coverage detected