()
| 9672 | |
| 9673 | |
| 9674 | def test_interface_empty_shape(): |
| 9675 | class ArrayLike: |
| 9676 | array = np.array(1) |
| 9677 | __array_interface__ = array.__array_interface__ |
| 9678 | assert_equal(np.array(ArrayLike()), 1) |
| 9679 | |
| 9680 | |
| 9681 | def test_interface_no_shape_error(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…