(self)
| 200 | assert_(fp.offset == offset) |
| 201 | |
| 202 | def test_no_shape(self): |
| 203 | self.tmpfp.write(b'a'*16) |
| 204 | mm = memmap(self.tmpfp, dtype='float64') |
| 205 | assert_equal(mm.shape, (2,)) |
| 206 | |
| 207 | def test_empty_array(self): |
| 208 | # gh-12653 |
nothing calls this directly
no test coverage detected