(self)
| 5877 | |
| 5878 | @_no_tracing |
| 5879 | def test_zeros_appended(self): |
| 5880 | x = np.eye(3) |
| 5881 | if IS_PYPY: |
| 5882 | x.resize(2, 3, 3, refcheck=False) |
| 5883 | else: |
| 5884 | x.resize(2, 3, 3) |
| 5885 | assert_array_equal(x[0], np.eye(3)) |
| 5886 | assert_array_equal(x[1], np.zeros((3, 3))) |
| 5887 | |
| 5888 | @_no_tracing |
| 5889 | def test_obj_obj(self): |
nothing calls this directly
no test coverage detected