(self)
| 492 | assert_equal(actual, expected) |
| 493 | |
| 494 | def test_generator(self): |
| 495 | with pytest.raises(TypeError, match="arrays to stack must be"): |
| 496 | column_stack((np.arange(3) for _ in range(2))) |
| 497 | |
| 498 | |
| 499 | class TestDstack: |
nothing calls this directly
no test coverage detected