(self)
| 395 | assert_raises(IndexError, index_tmp) |
| 396 | |
| 397 | def test_chararray_rstrip(self): |
| 398 | # Ticket #222 |
| 399 | x = np.char.chararray((1,), 5) |
| 400 | x[0] = b'a ' |
| 401 | x = x.rstrip() |
| 402 | assert_equal(x[0], b'a') |
| 403 | |
| 404 | def test_object_array_shape(self): |
| 405 | # Ticket #239 |
nothing calls this directly
no test coverage detected