(self)
| 5834 | |
| 5835 | @_no_tracing |
| 5836 | def test_int_shape(self): |
| 5837 | x = np.eye(3) |
| 5838 | if IS_PYPY: |
| 5839 | x.resize(3, refcheck=False) |
| 5840 | else: |
| 5841 | x.resize(3) |
| 5842 | assert_array_equal(x, np.eye(3)[0,:]) |
| 5843 | |
| 5844 | def test_none_shape(self): |
| 5845 | x = np.eye(3) |
nothing calls this directly
no test coverage detected