(self)
| 4182 | assert_equal(r, 0) |
| 4183 | |
| 4184 | def test_elide_updateifcopy(self): |
| 4185 | a = np.ones(2**20)[::2] |
| 4186 | b = a.flat.__array__() + 1 |
| 4187 | del b |
| 4188 | assert_equal(a, 1) |
| 4189 | |
| 4190 | |
| 4191 | class TestCAPI: |
nothing calls this directly
no test coverage detected