(self)
| 375 | assert_raises(IndexError, index_tmp) |
| 376 | |
| 377 | def test_chararray_rstrip(self): |
| 378 | # Ticket #222 |
| 379 | x = np.chararray((1,), 5) |
| 380 | x[0] = b'a ' |
| 381 | x = x.rstrip() |
| 382 | assert_equal(x[0], b'a') |
| 383 | |
| 384 | def test_object_array_shape(self): |
| 385 | # Ticket #239 |
nothing calls this directly
no test coverage detected