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