(self)
| 67 | for o, rc in zip(objects, orig_rcs))) |
| 68 | |
| 69 | def test_unicode_mode(self): |
| 70 | d = np.arange(10) |
| 71 | k = b'\xc3\xa4'.decode("UTF8") |
| 72 | assert_raises(ValueError, d.take, 5, mode=k) |
| 73 | |
| 74 | def test_empty_partition(self): |
| 75 | # In reference to github issue #6530 |
nothing calls this directly
no test coverage detected