(self)
| 1249 | return f |
| 1250 | |
| 1251 | def test_large_offset(self): |
| 1252 | with self._make_test_file(0x14FFFFFFF, b" ") as f: |
| 1253 | with mmap.mmap(f.fileno(), 0, offset=0x140000000, access=mmap.ACCESS_READ) as m: |
| 1254 | self.assertEqual(m[0xFFFFFFF], 32) |
| 1255 | |
| 1256 | def test_large_filesize(self): |
| 1257 | with self._make_test_file(0x17FFFFFFF, b" ") as f: |
nothing calls this directly
no test coverage detected