(self)
| 2452 | assert_equal(pickle.loads(dumped), arr) |
| 2453 | |
| 2454 | def test_bad_array_interface(self): |
| 2455 | class T: |
| 2456 | __array_interface__ = {} |
| 2457 | |
| 2458 | with assert_raises(ValueError): |
| 2459 | np.array([T()]) |
| 2460 | |
| 2461 | def test_2d__array__shape(self): |
| 2462 | class T: |
nothing calls this directly
no test coverage detected