(self)
| 489 | pickle.dumps(float, protocol=proto) |
| 490 | |
| 491 | def test_swap_real(self): |
| 492 | # Ticket #265 |
| 493 | assert_equal(np.arange(4, dtype='>c8').imag.max(), 0.0) |
| 494 | assert_equal(np.arange(4, dtype='<c8').imag.max(), 0.0) |
| 495 | assert_equal(np.arange(4, dtype='>c8').real.max(), 3.0) |
| 496 | assert_equal(np.arange(4, dtype='<c8').real.max(), 3.0) |
| 497 | |
| 498 | def test_object_array_from_list(self): |
| 499 | # Ticket #270 (gh-868) |
nothing calls this directly
no test coverage detected