()
| 8577 | assert_equal(pre_cnt, post_cnt) |
| 8578 | |
| 8579 | def test_interface_no_shape(): |
| 8580 | class ArrayLike: |
| 8581 | array = np.array(1) |
| 8582 | __array_interface__ = array.__array_interface__ |
| 8583 | assert_equal(np.array(ArrayLike()), 1) |
| 8584 | |
| 8585 | |
| 8586 | def test_array_interface_itemsize(): |
nothing calls this directly
no test coverage detected