(self)
| 505 | pickle.dumps(float, protocol=proto) |
| 506 | |
| 507 | def test_swap_real(self): |
| 508 | # Ticket #265 |
| 509 | assert_equal(np.arange(4, dtype='>c8').imag.max(), 0.0) |
| 510 | assert_equal(np.arange(4, dtype='<c8').imag.max(), 0.0) |
| 511 | assert_equal(np.arange(4, dtype='>c8').real.max(), 3.0) |
| 512 | assert_equal(np.arange(4, dtype='<c8').real.max(), 3.0) |
| 513 | |
| 514 | def test_object_array_from_list(self): |
| 515 | # Ticket #270 (gh-868) |
nothing calls this directly
no test coverage detected