(self)
| 405 | assert_(any(linspace(0, stop, 10, endpoint=False, dtype=ftype))) |
| 406 | |
| 407 | def test_equivalent_to_arange(self): |
| 408 | for j in range(1000): |
| 409 | assert_equal(linspace(0, j, j+1, dtype=int), |
| 410 | arange(j+1, dtype=int)) |
| 411 | |
| 412 | def test_retstep(self): |
| 413 | for num in [0, 1, 2]: |
nothing calls this directly
no test coverage detected